/** * 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. */ import type { ApiV2MarketDepthGet200ResponseBidsInner } from './ApiV2MarketDepthGet200ResponseBidsInner'; /** * Order book * @export * @interface ApiV2MarketDepthGet200Response */ export interface ApiV2MarketDepthGet200Response { /** * * @type {string} * @memberof ApiV2MarketDepthGet200Response */ timestamp: string; /** * * @type {Array} * @memberof ApiV2MarketDepthGet200Response */ bids: Array; /** * * @type {Array} * @memberof ApiV2MarketDepthGet200Response */ asks: Array; } /** * Check if a given object implements the ApiV2MarketDepthGet200Response interface. */ export declare function instanceOfApiV2MarketDepthGet200Response(value: object): boolean; export declare function ApiV2MarketDepthGet200ResponseFromJSON(json: any): ApiV2MarketDepthGet200Response; export declare function ApiV2MarketDepthGet200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2MarketDepthGet200Response; export declare function ApiV2MarketDepthGet200ResponseToJSON(value?: ApiV2MarketDepthGet200Response | null): any; //# sourceMappingURL=ApiV2MarketDepthGet200Response.d.ts.map