mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
25 lines
432 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|