/** * 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 EntityNotFound */ export interface EntityNotFound { /** * * @type {string} * @memberof EntityNotFound */ code: EntityNotFoundCodeEnum; /** * * @type {string} * @memberof EntityNotFound */ message: string; } /** * @export * @enum {string} */ export declare enum EntityNotFoundCodeEnum { TokenNotFound = "TOKEN_NOT_FOUND", BalanceNotFound = "BALANCE_NOT_FOUND", OwnershipNotFound = "OWNERSHIP_NOT_FOUND", OrderNotFound = "ORDER_NOT_FOUND", ItemNotFound = "ITEM_NOT_FOUND", CollectionNotFound = "COLLECTION_NOT_FOUND", NotFound = "NOT_FOUND" } export declare function EntityNotFoundFromJSON(json: any): EntityNotFound; export declare function EntityNotFoundFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityNotFound; export declare function EntityNotFoundToJSON(value?: EntityNotFound | null): any;