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

22 lines
421 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class DemioApi implements ICredentialType {
name = 'demioApi';
displayName = 'Demio API';
documentationUrl = 'demio';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
{
displayName: 'API Secret',
name: 'apiSecret',
type: 'string',
default: '',
},
];
}