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

19 lines
356 B
TypeScript
Raw Normal View History

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