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

19 lines
352 B
TypeScript
Raw Normal View History

2020-01-04 08:09:25 -08:00
import {
ICredentialType,
INodeProperties,
2020-01-04 08:09:25 -08:00
} from 'n8n-workflow';
export class EventbriteApi implements ICredentialType {
name = 'eventbriteApi';
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',
2020-01-04 08:09:25 -08:00
default: '',
},
];
}