/** * Representation of the 'DetailsErrorResponse' schema. */ export type DetailsErrorResponse = { /** * Descriptive error code (not http status code) */ code?: string; /** * Plaintext error description */ message?: string; } & Record; //# sourceMappingURL=details-error-response.d.ts.map