n8n-nodes-base
Version:
Base nodes of n8n
41 lines • 1.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayPalApi = void 0;
class PayPalApi {
name = 'payPalApi';
displayName = 'PayPal API';
documentationUrl = 'paypal';
properties = [
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
default: '',
},
{
displayName: 'Secret',
name: 'secret',
type: 'string',
typeOptions: { password: true },
default: '',
},
{
displayName: 'Environment',
name: 'env',
type: 'options',
default: 'live',
options: [
{
name: 'Sandbox',
value: 'sanbox',
},
{
name: 'Live',
value: 'live',
},
],
},
];
}
exports.PayPalApi = PayPalApi;
//# sourceMappingURL=PayPalApi.credentials.js.map