/** * 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 { NftOwnership } from './'; /** * * @export * @interface NftOwnerships */ export interface NftOwnerships { /** * * @type {number} * @memberof NftOwnerships */ total: number; /** * * @type {string} * @memberof NftOwnerships */ continuation?: string; /** * * @type {Array} * @memberof NftOwnerships */ ownerships: Array; } export declare function NftOwnershipsFromJSON(json: any): NftOwnerships; export declare function NftOwnershipsFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftOwnerships; export declare function NftOwnershipsToJSON(value?: NftOwnerships | null): any;