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

19 lines
352 B
TypeScript
Raw Normal View History

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