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

25 lines
421 B
TypeScript
Raw Normal View History

2019-11-22 09:38:08 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PaypalApi implements ICredentialType {
name = 'paypalApi';
displayName = 'Paypal API';
properties = [
{
displayName: 'Client ID',
name: 'clientId',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Secret',
name: 'secret',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}