n8n/packages/nodes-base/credentials/TwilioApi.credentials.ts
2019-06-23 12:35:23 +02:00

25 lines
432 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TwilioApi implements ICredentialType {
name = 'twilioApi';
displayName = 'Twilio API';
properties = [
{
displayName: 'Account SID',
name: 'accountSid',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Auth Token',
name: 'authToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}