added create a payout batch

This commit is contained in:
Ricardo Espinoza
2019-11-23 19:36:47 -05:00
parent 52acbe390a
commit 08c95f989c
7 changed files with 611 additions and 11 deletions

View File

@@ -4,9 +4,9 @@ import {
} from 'n8n-workflow';
export class PaypalApi implements ICredentialType {
export class PayPalApi implements ICredentialType {
name = 'paypalApi';
displayName = 'Paypal API';
displayName = 'PayPal API';
properties = [
{
displayName: 'Client ID',
@@ -20,5 +20,21 @@ export class PaypalApi implements ICredentialType {
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Enviroment',
name: 'env',
type: 'options' as NodePropertyTypes,
default: 'live',
options: [
{
name: 'Sanbox',
value: 'sanbox'
},
{
name: 'Live',
value: 'live'
},
]
},
];
}