/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * 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 ApiErrorDto */ export interface ApiErrorDto { /** * * @type {string} * @memberof ApiErrorDto */ error?: string; /** * * @type {string} * @memberof ApiErrorDto */ traceId?: string; /** * * @type {Date} * @memberof ApiErrorDto */ timestamp?: Date; /** * * @type {string} * @memberof ApiErrorDto */ messageName?: string; /** * * @type {number} * @memberof ApiErrorDto */ messageCode?: number; /** * * @type {string} * @memberof ApiErrorDto */ messageClassification?: ApiErrorDtoMessageClassificationEnum; } /** * @export * @enum {string} */ export declare enum ApiErrorDtoMessageClassificationEnum { InterfaceError = "INTERFACE_ERROR", AuthenticationError = "AUTHENTICATION_ERROR", AuthorizationError = "AUTHORIZATION_ERROR", BusinessLogicError = "BUSINESS_LOGIC_ERROR" } export declare function ApiErrorDtoFromJSON(json: any): ApiErrorDto; export declare function ApiErrorDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiErrorDto; export declare function ApiErrorDtoToJSON(value?: ApiErrorDto | null): any;