/** * 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 { NftCollectionFeature, NftCollectionType } from './'; /** * * @export * @interface NftCollection */ export interface NftCollection { /** * * @type {string} * @memberof NftCollection */ id: string; /** * * @type {string} * @memberof NftCollection */ owner?: string; /** * * @type {NftCollectionType} * @memberof NftCollection */ type: NftCollectionType; /** * * @type {string} * @memberof NftCollection */ name: string; /** * * @type {string} * @memberof NftCollection */ symbol?: string; /** * * @type {Array} * @memberof NftCollection */ features: Array; /** * * @type {boolean} * @memberof NftCollection */ supportsLazyMint: boolean; /** * * @type {Array} * @memberof NftCollection */ minters?: Array; } export declare function NftCollectionFromJSON(json: any): NftCollection; export declare function NftCollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftCollection; export declare function NftCollectionToJSON(value?: NftCollection | null): any;