/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ErrorDto */ export interface ErrorDto { /** * Error message. * @type {string} * @memberof ErrorDto */ message: string; /** * The error code. * @type {string} * @memberof ErrorDto */ errorCode?: string | null; /** * The optional trace id. * @type {string} * @memberof ErrorDto */ traceId?: string | null; /** * Link to the error details. * @type {string} * @memberof ErrorDto */ type?: string | null; /** * Detailed error messages. * @type {Array} * @memberof ErrorDto */ details?: Array | null; /** * Status code of the http response. * @type {number} * @memberof ErrorDto */ statusCode: number; } /** * Check if a given object implements the ErrorDto interface. */ export declare function instanceOfErrorDto(value: any): value is ErrorDto; export declare function ErrorDtoFromJSON(json: any): ErrorDto; export declare function ErrorDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ErrorDto; export declare function ErrorDtoToJSON(value?: ErrorDto | null, _ignoreDiscriminator?: boolean): any;