/** * 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 { OrderActivityType } from './'; /** * * @export * @interface OrderActType */ export interface OrderActType { /** * * @type {string} * @memberof OrderActType */ id: string; /** * * @type {Date} * @memberof OrderActType */ date: Date; /** * * @type {string} * @memberof OrderActType */ source: string; /** * * @type {OrderActivityType} * @memberof OrderActType */ type: OrderActivityType; } export declare function OrderActTypeFromJSON(json: any): OrderActType; export declare function OrderActTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderActType; export declare function OrderActTypeToJSON(value?: OrderActType | null): any;