Interface FileStatus

Status of a File that uses a common error model.

interface FileStatus {
    code?: number;
    details?: Record<string, unknown>[];
    message?: string;
}

Properties

code?: number

The status code. 0 for OK, 1 for CANCELLED

details?: Record<string, unknown>[]

A list of messages that carry the error details. There is a common set of message types for APIs to use.

message?: string

A list of messages that carry the error details. There is a common set of message types for APIs to use.

MMNEPVFCICPMFPCPTTAAATR