n8n/packages/nodes-base/credentials/StripeApi.credentials.ts

22 lines
451 B
TypeScript
Raw Normal View History

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class StripeApi implements ICredentialType {
name = 'stripeApi';
displayName = 'Stripe Api';
properties = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'Secret Key',
name: 'secretKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}