n8n/packages/nodes-base/credentials/BambooHrApi.credentials.ts
2022-01-22 18:48:58 +01:00

25 lines
435 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class BambooHrApi implements ICredentialType {
name = 'bambooHrApi';
displayName = 'BambooHR API';
documentationUrl = 'bambooHr';
properties: INodeProperties[] = [
{
displayName: 'Subdomain',
name: 'subdomain',
type: 'string',
default: '',
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}