n8n/packages/nodes-base/credentials/EgoiApi.credentials.ts
2021-01-05 08:46:07 +01:00

23 lines
468 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class EgoiApi implements ICredentialType {
name = 'egoiApi';
displayName = 'E-goi API';
documentationUrl = 'egoi';
properties = [
// The credentials to get from user and save encrypted.
// Properties can be defined exactly in the same way
// as node properties.
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}