Interface ZendeskTriggerNodeParameters

Source
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§

§readonly authentication?: "oAuth2" | "apiToken"

Default: "apiToken"

§readonly conditions?: { ... }

The condition to set Default: {} Type options: {"multipleValues":true}

§readonly options?: { ... }

Default: {}

§readonly service?: "support"

Default: "support"