mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
0c820d80d2
* ✨ Vonage-Node * ⚡ Improvements * ⚡ fix issue with description
24 lines
423 B
TypeScript
24 lines
423 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class VonageApi implements ICredentialType {
|
|
name = 'vonageApi';
|
|
displayName = 'Vonage API';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'API Secret',
|
|
name: 'apiSecret',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|