/** * 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 { NftCollection } from './'; /** * * @export * @interface NftCollections */ export interface NftCollections { /** * * @type {number} * @memberof NftCollections */ total: number; /** * * @type {string} * @memberof NftCollections */ continuation?: string; /** * * @type {Array} * @memberof NftCollections */ collections: Array; } export declare function NftCollectionsFromJSON(json: any): NftCollections; export declare function NftCollectionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftCollections; export declare function NftCollectionsToJSON(value?: NftCollections | null): any;