Type alias HighSystemsResponseGetTrigger

HighSystemsResponseGetTrigger: {
    results: {
        active?: boolean;
        description?: string;
        event: "insert" | "update" | "delete";
        forEach: "row" | "statement";
        id: string;
        name: string;
        owner: string;
        relatedApplication: string;
        relatedFunction: string;
        relatedTable: string;
        timing: "before" | "after" | "instead of";
        where?: string;
    };
    success: boolean;
}

Type declaration

  • results: {
        active?: boolean;
        description?: string;
        event: "insert" | "update" | "delete";
        forEach: "row" | "statement";
        id: string;
        name: string;
        owner: string;
        relatedApplication: string;
        relatedFunction: string;
        relatedTable: string;
        timing: "before" | "after" | "instead of";
        where?: string;
    }
    • Optional active?: boolean
    • Optional description?: string
    • event: "insert" | "update" | "delete"
    • forEach: "row" | "statement"
    • id: string
    • name: string
    • owner: string
    • relatedApplication: string
    • relatedFunction: string
    • relatedTable: string
    • timing: "before" | "after" | "instead of"
    • Optional where?: string
  • success: boolean

Generated using TypeDoc