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§
§§
readonly event?:
| "all"
| "deleted"
| "ended"
| "created"
| "updated"
| "started"§readonly filters?: { ... }§
readonly resolve Data?: booleanBy 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
readonly resource?:
| "all"
| "message"
| "meeting"
| "room"
| "attachmentAction"
| "membership"
| "recording"Default: "meeting"
Default: {}