interface ZendeskTriggerNodeParameters {
authentication?: "oAuth2" | "apiToken";
conditions?: {
all: {
field?:
| "type"
| "group"
| "status"
| "priority"
| "assignee";
operation?: | "is"
| "is_not"
| "value"
| "greater_than"
| "less_than"
| "changed"
| "value_previous"
| "not_changed"
| "not_value_previous"
| "not_value";
resource?: "ticket";
value?: string;
}[];
any: {
field?: | "type"
| "group"
| "status"
| "priority"
| "assignee";
operation?: | "is"
| "is_not"
| "value"
| "greater_than"
| "less_than"
| "changed"
| "value_previous"
| "not_changed"
| "not_value_previous"
| "not_value";
resource?: "ticket";
value?: string;
}[];
};
options?: { fields?: unknown[] };
service?: "support";
}
Properties§
Source§readonly conditions?: {
all: {
field?:
| "type"
| "group"
| "status"
| "priority"
| "assignee";
operation?: | "is"
| "is_not"
| "value"
| "greater_than"
| "less_than"
| "changed"
| "value_previous"
| "not_changed"
| "not_value_previous"
| "not_value";
resource?: "ticket";
value?: string;
}[];
any: {
field?: | "type"
| "group"
| "status"
| "priority"
| "assignee";
operation?: | "is"
| "is_not"
| "value"
| "greater_than"
| "less_than"
| "changed"
| "value_previous"
| "not_changed"
| "not_value_previous"
| "not_value";
resource?: "ticket";
value?: string;
}[];
}
readonly conditions?: {
all: {
field?:
| "type"
| "group"
| "status"
| "priority"
| "assignee";
operation?: | "is"
| "is_not"
| "value"
| "greater_than"
| "less_than"
| "changed"
| "value_previous"
| "not_changed"
| "not_value_previous"
| "not_value";
resource?: "ticket";
value?: string;
}[];
any: {
field?: | "type"
| "group"
| "status"
| "priority"
| "assignee";
operation?: | "is"
| "is_not"
| "value"
| "greater_than"
| "less_than"
| "changed"
| "value_previous"
| "not_changed"
| "not_value_previous"
| "not_value";
resource?: "ticket";
value?: string;
}[];
}
The condition to set Default: {} Type options: {"multipleValues":true}
Default: "apiToken"