Member Junction
    Preparing search index...
    interface IntegrationRunRow {
        Company: string;
        CompanyIntegrationID: string;
        EndedAt: string | Date | null;
        ErrorLog: string | null;
        ID: string;
        Integration: string;
        RunByUser: string;
        StartedAt: string | Date | null;
        Status:
            | "Pending"
            | "Success"
            | "Failed"
            | "Cancelled"
            | "In Progress"
            | "Queued";
        TotalRecords: number;
    }
    Index

    Properties

    Company: string
    CompanyIntegrationID: string
    EndedAt: string | Date | null
    ErrorLog: string | null
    ID: string
    Integration: string
    RunByUser: string
    StartedAt: string | Date | null
    Status:
        | "Pending"
        | "Success"
        | "Failed"
        | "Cancelled"
        | "In Progress"
        | "Queued"
    TotalRecords: number