/** * Kanga Exchange API * API documentation generated from Kanga Exchange source code. * * The version of the OpenAPI document: 1.0.0 * Contact: support@kanga.exchange * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Market changes * @export * @interface ApiV2MarketChangesGet200ResponseOneOf */ export interface ApiV2MarketChangesGet200ResponseOneOf { /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ timestamp: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ price?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ minPrice?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ maxPrice?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ highestBid?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ lowestAsk?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ volume?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ volume24?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ quantityVolume24?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ weeklyVolume?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ monthlyVolume?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ change?: string; /** * * @type {string} * @memberof ApiV2MarketChangesGet200ResponseOneOf */ changeQuantity?: string; } /** * Check if a given object implements the ApiV2MarketChangesGet200ResponseOneOf interface. */ export declare function instanceOfApiV2MarketChangesGet200ResponseOneOf(value: object): boolean; export declare function ApiV2MarketChangesGet200ResponseOneOfFromJSON(json: any): ApiV2MarketChangesGet200ResponseOneOf; export declare function ApiV2MarketChangesGet200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2MarketChangesGet200ResponseOneOf; export declare function ApiV2MarketChangesGet200ResponseOneOfToJSON(value?: ApiV2MarketChangesGet200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2MarketChangesGet200ResponseOneOf.d.ts.map