mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
19 lines
348 B
TypeScript
19 lines
348 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class PagerDutyApi implements ICredentialType {
|
|
name = 'pagerDutyApi';
|
|
displayName = 'PagerDuty API';
|
|
documentationUrl = 'pagerDuty';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'apiToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|