n8n/packages/nodes-base/credentials/PlivoApi.credentials.ts

22 lines
421 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class PlivoApi implements ICredentialType {
name = 'plivoApi';
displayName = 'Plivo API';
documentationUrl = 'plivo';
properties: INodeProperties[] = [
{
displayName: 'Auth ID',
name: 'authId',
type: 'string',
default: '',
},
{
displayName: 'Auth Token',
name: 'authToken',
type: 'string',
default: '',
},
];
}