/** * 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 Mint */ export interface Mint { /** * * @type {string} * @memberof Mint */ type: MintTypeEnum; /** * * @type {string} * @memberof Mint */ owner: string; /** * * @type {string} * @memberof Mint */ contract: string; /** * * @type {string} * @memberof Mint */ tokenId: string; /** * * @type {string} * @memberof Mint */ value: string; /** * * @type {string} * @memberof Mint */ transactionHash: string; /** * * @type {string} * @memberof Mint */ blockHash: string; /** * * @type {number} * @memberof Mint */ blockNumber: number; } /** * @export * @enum {string} */ export declare enum MintTypeEnum { Mint = "mint" } export declare function MintFromJSON(json: any): Mint; export declare function MintFromJSONTyped(json: any, ignoreDiscriminator: boolean): Mint; export declare function MintToJSON(value?: Mint | null): any;