Interface AIOperationError

interface AIOperationError {
    code: AIOperationErrorCode;
    details?: unknown;
    httpStatus?: number;
    message: string;
    status?: string;
}

Properties

details?: unknown
httpStatus?: number
message: string
status?: string

Generated using TypeDoc