/** * Tezos Rarible API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1 * * * 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 ServerError */ export interface ServerError { /** * * @type {string} * @memberof ServerError */ code: ServerErrorCodeEnum; /** * * @type {string} * @memberof ServerError */ message: string; } /** * @export * @enum {string} */ export declare enum ServerErrorCodeEnum { UnexpectedApiError = "UNEXPECTED_API_ERROR" } export declare function ServerErrorFromJSON(json: any): ServerError; export declare function ServerErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServerError; export declare function ServerErrorToJSON(value?: ServerError | null): any;