Interface IDataAlertExecutionListResponse

interface IDataAlertExecutionListResponse {
    StandardListResponseProps: {
        currentPageCount: number;
        totalCount: number;
    };
    executions: IAlertingExecutionResponse[];
    links: ILinks;
}

Properties

StandardListResponseProps: {
    currentPageCount: number;
    totalCount: number;
}

Type declaration

  • currentPageCount: number
  • totalCount: number
links: ILinks