Status of the request.

interface CustomerRequestStatusDto {
    status?: string;
    statusCategory?:
        | "DONE"
        | "UNDEFINED"
        | "NEW"
        | "INDETERMINATE";
    statusDate?: DateDto;
}

Properties

status?: string

Name of the status condition.

statusCategory?:
    | "DONE"
    | "UNDEFINED"
    | "NEW"
    | "INDETERMINATE"

Status category the status belongs to.

statusDate?: DateDto

Date on which the status was attained.