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

21 lines
374 B
TypeScript
Raw Normal View History

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