Interface DevOpsAPIErrorDescriptor

A representation of what went wrong when interacting with the DevOps API.

Field

id - The API-specific error code.

Field

message - A user-friendly error message, if one exists (it most often does).

interface DevOpsAPIErrorDescriptor {
    id: number;
    message?: string;
}

Properties

Properties

id: number

The API-specific error code.

message?: string

A user-friendly error message, if one exists (it most often does).