28 lines
776 B
TypeScript
28 lines
776 B
TypeScript
|
import { InnerErrorDetail } from './innerErrorDetail';
|
||
|
/**
|
||
|
* The top-level error object whose code matches the x-ms-error-code response header
|
||
|
*/
|
||
|
export interface ErrorDetail {
|
||
|
/**
|
||
|
* One of a server-defined set of error codes defined in {@link ErrorCodes}.
|
||
|
*/
|
||
|
code: string;
|
||
|
/**
|
||
|
* A human-readable representation of the error.
|
||
|
*/
|
||
|
message: string;
|
||
|
/**
|
||
|
* The target of the error.
|
||
|
*/
|
||
|
target?: string;
|
||
|
/**
|
||
|
* An array of details about specific errors that led to this reported error.
|
||
|
*/
|
||
|
details?: ErrorDetail[];
|
||
|
/**
|
||
|
* An object containing more specific information than the current object about the
|
||
|
* error.
|
||
|
*/
|
||
|
innererror?: InnerErrorDetail;
|
||
|
}
|
||
|
//# sourceMappingURL=errorDetail.d.ts.map
|