interface Status<T> {
    attributes: T;
    createdAt: string;
    eta: string;
    finishedAt: string;
    identifier: string;
    progress: number;
    startedAt: string;
    status: string;
    updatedAt: string;
}

Type Parameters

  • T

Properties

attributes: T
createdAt: string
eta: string
finishedAt: string
identifier: string
progress: number
startedAt: string
status: string
updatedAt: string