Interface CiscoWebexTriggerNodeParameters

Source
interface CiscoWebexTriggerNodeParameters {
    event?:
        | "all"
        | "deleted"
        | "ended"
        | "created"
        | "updated"
        | "started";
    filters?: {
        hasFiles?: boolean;
        isLocked?: boolean;
        isModerator?: boolean;
        mentionedPeople?: string;
        messageId?: string;
        ownedBy?: string;
        personEmail?: string;
        personId?: string;
        roomId?: string;
        roomType?: "group"
        | "direct";
        type?: "group" | "direct";
    };
    resolveData?: boolean;
    resource?: | "all"
    | "message"
    | "meeting"
    | "room"
    | "attachmentAction"
    | "membership"
    | "recording";
}

Properties§

Source§

readonly event?:
    | "all"
    | "deleted"
    | "ended"
    | "created"
    | "updated"
    | "started"

Source§

readonly filters?: {
    hasFiles?: boolean;
    isLocked?: boolean;
    isModerator?: boolean;
    mentionedPeople?: string;
    messageId?: string;
    ownedBy?: string;
    personEmail?: string;
    personId?: string;
    roomId?: string;
    roomType?: "group" | "direct";
    type?: "group" | "direct";
}

Default: {}

Source§

readonly resolveData?: boolean

By default the response only contain a reference to the data the user inputed. If this option gets activated, it will resolve the data automatically. Default: true

Source§

readonly resource?:
    | "all"
    | "message"
    | "meeting"
    | "room"
    | "attachmentAction"
    | "membership"
    | "recording"

Default: "meeting"