/** * 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. */ import { Part } from './'; /** * * @export * @interface NftOwnership */ export interface NftOwnership { /** * * @type {string} * @memberof NftOwnership */ id: string; /** * * @type {string} * @memberof NftOwnership */ contract: string; /** * * @type {string} * @memberof NftOwnership */ tokenId: string; /** * * @type {string} * @memberof NftOwnership */ owner: string; /** * * @type {Array} * @memberof NftOwnership */ creators: Array; /** * * @type {string} * @memberof NftOwnership */ value: string; /** * * @type {string} * @memberof NftOwnership */ lazyValue: string; /** * * @type {Date} * @memberof NftOwnership */ date: Date; /** * * @type {Date} * @memberof NftOwnership */ createdAt: Date; } export declare function NftOwnershipFromJSON(json: any): NftOwnership; export declare function NftOwnershipFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftOwnership; export declare function NftOwnershipToJSON(value?: NftOwnership | null): any;