/** * 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 NftItemAttribute */ export interface NftItemAttribute { /** * * @type {string} * @memberof NftItemAttribute */ key: string; /** * * @type {string} * @memberof NftItemAttribute */ value: string; /** * * @type {string} * @memberof NftItemAttribute */ type?: string; /** * * @type {string} * @memberof NftItemAttribute */ format?: string; } export declare function NftItemAttributeFromJSON(json: any): NftItemAttribute; export declare function NftItemAttributeFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftItemAttribute; export declare function NftItemAttributeToJSON(value?: NftItemAttribute | null): any;