Type alias HighSystemsResponseGetTriggers

HighSystemsResponseGetTriggers: {
    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;
    }[]
  • success: boolean

Generated using TypeDoc