auto-creation of webhook via Stripe API

This commit is contained in:
Luca Faggianelli
2019-10-15 14:46:42 +02:00
parent a87adc8e54
commit 674dde28ee
4 changed files with 170 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class StripeApi implements ICredentialType {
name = 'stripeApi';
displayName = 'Stripe Api';
properties = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'Secret Key',
name: 'secretKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}