/** * 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. */ /** * * @export * @interface OrderPriceHistoryRecord */ export interface OrderPriceHistoryRecord { /** * * @type {Date} * @memberof OrderPriceHistoryRecord */ date: Date; /** * * @type {string} * @memberof OrderPriceHistoryRecord */ makeValue: string; /** * * @type {string} * @memberof OrderPriceHistoryRecord */ takeValue: string; } export declare function OrderPriceHistoryRecordFromJSON(json: any): OrderPriceHistoryRecord; export declare function OrderPriceHistoryRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderPriceHistoryRecord; export declare function OrderPriceHistoryRecordToJSON(value?: OrderPriceHistoryRecord | null): any;