Type alias HighSystemsRequestPutTrigger

HighSystemsRequestPutTrigger: HighSystemsRequest & {
    active?: boolean;
    appid: any;
    description?: string;
    event: "insert" | "update" | "delete";
    forEach: "row" | "statement";
    name: string;
    owner: string;
    relatedFunction: string;
    relatedTable: string;
    timing: "before" | "after" | "instead of";
    triggerid: any;
    where?: string;
}

Type declaration

  • Optional active?: boolean
  • appid: any

    Application ID

  • Optional description?: string
  • event: "insert" | "update" | "delete"
  • forEach: "row" | "statement"
  • name: string
  • owner: string
  • relatedFunction: string
  • relatedTable: string
  • timing: "before" | "after" | "instead of"
  • triggerid: any

    Trigger ID

  • Optional where?: string

Generated using TypeDoc