interface DetailedErrorCollection {
    details?: {
        [key: string]: unknown;
    };
    errorMessages?: string[];
    errors?: {
        [key: string]: string;
    };
}

Properties

details?: {
    [key: string]: unknown;
}

Map of objects representing additional details for an error

errorMessages?: string[]

The list of error messages produced by this operation. For example, "input parameter 'key' must be provided"

errors?: {
    [key: string]: string;
}

The list of errors by parameter returned by the operation. For example,"projectKey": "Project keys must start with an uppercase letter, followed by one or more uppercase alphanumeric characters."