/** * 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 { NftActivityType } from './'; /** * * @export * @interface NftActType */ export interface NftActType { /** * * @type {string} * @memberof NftActType */ id: string; /** * * @type {Date} * @memberof NftActType */ date: Date; /** * * @type {string} * @memberof NftActType */ source: string; /** * * @type {NftActivityType} * @memberof NftActType */ type: NftActivityType; } export declare function NftActTypeFromJSON(json: any): NftActType; export declare function NftActTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftActType; export declare function NftActTypeToJSON(value?: NftActType | null): any;