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

17 lines
366 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2019-12-13 03:29:33 -08:00
export class Msg91Api implements ICredentialType {
name = 'msg91Api';
displayName = 'Msg91 Api';
documentationUrl = 'msg91';
properties: INodeProperties[] = [
2019-12-13 03:29:33 -08:00
// User authentication key
{
displayName: 'Authentication Key',
name: 'authkey',
type: 'string',
2019-12-13 03:29:33 -08:00
default: '',
},
];
}