mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ PagerDuty node
This commit is contained in:
19
packages/nodes-base/nodes/PagerDuty/IncidentInterface.ts
Normal file
19
packages/nodes-base/nodes/PagerDuty/IncidentInterface.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import {
|
||||
IDataObject,
|
||||
} from "n8n-workflow";
|
||||
|
||||
export interface IIncident {
|
||||
assignments?: IDataObject[];
|
||||
body?: IDataObject;
|
||||
conference_bridge?: IDataObject;
|
||||
escalation_level?: number;
|
||||
escalation_policy?: IDataObject;
|
||||
incident_key?: string;
|
||||
priority?: IDataObject;
|
||||
resolution?: string;
|
||||
status?: string;
|
||||
service?: IDataObject;
|
||||
title?: string;
|
||||
type?: string;
|
||||
urgency?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user