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

20 lines
393 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-01-04 08:09:25 -08:00
export class EventbriteApi implements ICredentialType {
name = 'eventbriteApi';
2020-01-04 08:09:25 -08:00
displayName = 'Eventbrite API';
documentationUrl = 'eventbrite';
properties: INodeProperties[] = [
2020-01-04 08:09:25 -08:00
{
displayName: 'Private Key',
2020-01-04 08:09:25 -08:00
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
2020-01-04 08:09:25 -08:00
default: '',
},
];
}