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

25 lines
463 B
TypeScript
Raw Normal View History

2020-01-17 18:08:29 -08:00
import {
ICredentialType,
INodeProperties,
2020-01-17 18:08:29 -08:00
} from 'n8n-workflow';
export class AcuitySchedulingApi implements ICredentialType {
name = 'acuitySchedulingApi';
displayName = 'Acuity Scheduling API';
documentationUrl = 'acuityScheduling';
properties: INodeProperties[] = [
2020-01-17 18:08:29 -08:00
{
displayName: 'User ID',
name: 'userId',
type: 'string',
2020-01-17 18:08:29 -08:00
default: '',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-01-17 18:08:29 -08:00
default: '',
},
];
}