Member Junction
    Preparing search index...

    Activity feed item for the Control Tower bottom section

    interface ActivityFeedItem {
        IntegrationName: string;
        RelativeTime: string;
        RunByUser: string;
        RunID: string;
        StartedAt: string | Date | null;
        Status:
            | "Pending"
            | "Success"
            | "Failed"
            | "Cancelled"
            | "In Progress"
            | "Queued";
        StatusColor: "green"
        | "red"
        | "gray"
        | "amber";
        TotalRecords: number;
    }
    Index

    Properties

    IntegrationName: string
    RelativeTime: string
    RunByUser: string
    RunID: string
    StartedAt: string | Date | null
    Status:
        | "Pending"
        | "Success"
        | "Failed"
        | "Cancelled"
        | "In Progress"
        | "Queued"
    StatusColor: "green" | "red" | "gray" | "amber"
    TotalRecords: number