/** * 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 { OrderActivityMatchType, OrderActivitySideMatch } from './'; /** * * @export * @interface OrderActivityMatch */ export interface OrderActivityMatch { /** * * @type {string} * @memberof OrderActivityMatch */ type: OrderActivityMatchTypeEnum; /** * * @type {OrderActivitySideMatch} * @memberof OrderActivityMatch */ left: OrderActivitySideMatch; /** * * @type {OrderActivitySideMatch} * @memberof OrderActivityMatch */ right: OrderActivitySideMatch; /** * * @type {OrderActivityMatchType} * @memberof OrderActivityMatch */ type: OrderActivityMatchType; /** * * @type {string} * @memberof OrderActivityMatch */ price: string; /** * * @type {string} * @memberof OrderActivityMatch */ transactionHash: string; /** * * @type {string} * @memberof OrderActivityMatch */ blockHash: string; /** * * @type {number} * @memberof OrderActivityMatch */ blockNumber: number; /** * * @type {number} * @memberof OrderActivityMatch */ logIndex: number; } /** * @export * @enum {string} */ export declare enum OrderActivityMatchTypeEnum { Match = "match" } export declare function OrderActivityMatchFromJSON(json: any): OrderActivityMatch; export declare function OrderActivityMatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderActivityMatch; export declare function OrderActivityMatchToJSON(value?: OrderActivityMatch | null): any;