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

19 lines
340 B
TypeScript
Raw Normal View History

2020-03-10 09:42:57 -07:00
import {
ICredentialType,
INodeProperties,
2020-03-10 09:42:57 -07:00
} from 'n8n-workflow';
export class CalendlyApi implements ICredentialType {
name = 'calendlyApi';
displayName = 'Calendly API';
documentationUrl = 'calendly';
properties: INodeProperties[] = [
2020-03-10 09:42:57 -07:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-03-10 09:42:57 -07:00
default: '',
},
];
}