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

19 lines
336 B
TypeScript
Raw Normal View History

2019-12-03 13:48:17 -08:00
import {
ICredentialType,
INodeProperties,
2019-12-03 13:48:17 -08:00
} from 'n8n-workflow';
export class HubspotApi implements ICredentialType {
name = 'hubspotApi';
displayName = 'Hubspot API';
documentationUrl = 'hubspot';
properties: INodeProperties[] = [
2019-12-03 13:48:17 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2019-12-03 13:48:17 -08:00
default: '',
},
];
}