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

19 lines
353 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-04-05 18:06:23 -07:00
export class PagerDutyApi implements ICredentialType {
name = 'pagerDutyApi';
2020-04-05 18:06:23 -07:00
displayName = 'PagerDuty API';
documentationUrl = 'pagerDuty';
properties: INodeProperties[] = [
2020-04-05 18:06:23 -07:00
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
2020-04-05 18:06:23 -07:00
default: '',
},
];
}