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§

Source§

readonly authentication?: "oAuth2" | "apiToken"

Default: "apiToken"

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;
    }[];
}

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

Source§

readonly options?: { fields?: unknown[] }

Default: {}

Source§

readonly service?: "support"

Default: "support"