/** * 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 NftActivityElt */ export interface NftActivityElt { /** * * @type {string} * @memberof NftActivityElt */ owner: string; /** * * @type {string} * @memberof NftActivityElt */ contract: string; /** * * @type {string} * @memberof NftActivityElt */ tokenId: string; /** * * @type {string} * @memberof NftActivityElt */ value: string; /** * * @type {string} * @memberof NftActivityElt */ transactionHash: string; /** * * @type {string} * @memberof NftActivityElt */ blockHash: string; /** * * @type {number} * @memberof NftActivityElt */ blockNumber: number; } export declare function NftActivityEltFromJSON(json: any): NftActivityElt; export declare function NftActivityEltFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftActivityElt; export declare function NftActivityEltToJSON(value?: NftActivityElt | null): any;