/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.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 ErrorMessageWithCode */ export interface ErrorMessageWithCode { /** * Machine-readable error code * @type {string} * @memberof ErrorMessageWithCode */ code?: string; /** * Human-readable error message * @type {string} * @memberof ErrorMessageWithCode */ message?: string; } export declare function ErrorMessageWithCodeFromJSON(json: any): ErrorMessageWithCode; export declare function ErrorMessageWithCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorMessageWithCode; export declare function ErrorMessageWithCodeToJSON(value?: ErrorMessageWithCode | null): any;