🎉 node-setup

This commit is contained in:
Ricardo Espinoza
2019-11-22 12:38:08 -05:00
parent 6a96349ed6
commit 52acbe390a
4 changed files with 67 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
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: '',
},
];
}