/** * 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 NftCollectionEvent */ export interface NftCollectionEvent { /** * * @type {string} * @memberof NftCollectionEvent */ eventId: string; /** * * @type {string} * @memberof NftCollectionEvent */ collectionId: string; /** * * @type {string} * @memberof NftCollectionEvent */ type: NftCollectionEventTypeEnum; /** * * @type {NftCollection} * @memberof NftCollectionEvent */ collection: NftCollection; } /** * @export * @enum {string} */ export declare enum NftCollectionEventTypeEnum { Update = "UPDATE" } export declare function NftCollectionEventFromJSON(json: any): NftCollectionEvent; export declare function NftCollectionEventFromJSONTyped(json: any, ignoreDiscriminator: boolean): NftCollectionEvent; export declare function NftCollectionEventToJSON(value?: NftCollectionEvent | null): any;