interface CostAllocationResult {
    data: CostAllocationData[];
    id: string;
    message: string;
    status: "PROCESSING" | "SUCCESS" | "ERROR";
}

Hierarchy

Properties

Properties

id: string

Unique identifier for the task, used for tracking and retrieval.

message: string

Optional details on processing status, providing task insights or error explanations.

status: "PROCESSING" | "SUCCESS" | "ERROR"

Current status of the task, indicating its lifecycle phase.