export interface AccountPricesEntity { assetTypePrices?: AssetPriceEntity[]; channelPrices?: ChannelPriceEntity[]; warning?: string; } interface AssetPriceEntity { assetType: string; customPrice?: PriceEntity; priceShownToUser?: PriceEntity; evaluatedPriceType?: string; warning?: string; } interface ChannelPriceEntity { channelId: string; channelName?: string; customPrice: PriceEntity; isShownToUser: boolean; } interface PriceEntity { amount: number; currency: string; } interface PriceEntity { amount: number; currency: string; type?: string; channelName?: string; } export {};