/** * 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 Burn */ export interface Burn { /** * * @type {string} * @memberof Burn */ type: BurnTypeEnum; /** * * @type {string} * @memberof Burn */ owner: string; /** * * @type {string} * @memberof Burn */ contract: string; /** * * @type {string} * @memberof Burn */ tokenId: string; /** * * @type {string} * @memberof Burn */ value: string; /** * * @type {string} * @memberof Burn */ transactionHash: string; /** * * @type {string} * @memberof Burn */ blockHash: string; /** * * @type {number} * @memberof Burn */ blockNumber: number; } /** * @export * @enum {string} */ export declare enum BurnTypeEnum { Burn = "burn" } export declare function BurnFromJSON(json: any): Burn; export declare function BurnFromJSONTyped(json: any, ignoreDiscriminator: boolean): Burn; export declare function BurnToJSON(value?: Burn | null): any;