export interface GetAskPriceResponse { ProductActivity: Array; Pagination: Pagination; } export type GetBidPriceResponse = GetAskPriceResponse; export type GetSalesResponse = GetAskPriceResponse; export interface ProductActivity { chainId: string; amount: number; createdAt: string; shoeSize: string; productId: null; skuUuid: string; frequency: string; state: string; customerId: null | string; localAmount: number; localCurrency: string; } export interface Pagination { limit: number; page: number; total: number; sort: Array; order: Array; lastPage: string; currentPage: string; nextPage: null | string; prevPage: null | string; }