mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
42 lines
696 B
TypeScript
42 lines
696 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class PayPalApi implements ICredentialType {
|
|
name = 'payPalApi';
|
|
displayName = 'PayPal API';
|
|
documentationUrl = 'payPal';
|
|
properties = [
|
|
{
|
|
displayName: 'Client ID',
|
|
name: 'clientId',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Secret',
|
|
name: 'secret',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Environment',
|
|
name: 'env',
|
|
type: 'options' as NodePropertyTypes,
|
|
default: 'live',
|
|
options: [
|
|
{
|
|
name: 'Sanbox',
|
|
value: 'sanbox',
|
|
},
|
|
{
|
|
name: 'Live',
|
|
value: 'live',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
}
|