/** * 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 { NftActType, OrderActType } from './'; /** * * @export * @interface ActivityType */ export interface ActivityType { /** * * @type {NftActType} * @memberof ActivityType */ nftType?: NftActType; /** * * @type {OrderActType} * @memberof ActivityType */ orderType?: OrderActType; } export declare function ActivityTypeFromJSON(json: any): ActivityType; export declare function ActivityTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityType; export declare function ActivityTypeToJSON(value?: ActivityType | null): any;