Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/credentials/Msg91Api.credentials.ts
2025-09-08 04:48:28 +08:00

21 lines
410 B
TypeScript
Executable File

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class Msg91Api implements ICredentialType {
name = 'msg91Api';
displayName = 'Msg91 Api';
documentationUrl = 'msg91';
properties: INodeProperties[] = [
// User authentication key
{
displayName: 'Authentication Key',
name: 'authkey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
}