🔀 Merge branch 'Walkover-Web-Solution-msg91-integration-new'

This commit is contained in:
Jan Oberhauser
2020-01-07 18:51:12 -06:00
5 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class Msg91Api implements ICredentialType {
name = 'msg91Api';
displayName = 'Msg91 Api';
properties = [
// User authentication key
{
displayName: 'Authentication Key',
name: 'authkey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}