import { RetailPriceInterface } from './retail-price.interface'; export interface ConvertRetailPricesForMarketRequestInterface { partnerMarket?: PartnerMarketContainerInterface; currency?: string; conversionRate?: number; } export interface CreateOrUpdateRetailPriceRequestInterface { appId?: string; editionId?: string; partnerId?: string; marketId?: string; retailPrice?: RetailPriceInterface; } export interface DeleteRetailPriceRequestInterface { appId?: string; editionId?: string; partnerId?: string; marketId?: string; } export interface GetMultiRetailPriceRequestInterface { businessId?: string; partnerMarket?: PartnerMarketContainerInterface; productIds?: ProductIdentifierInterface[]; } export interface GetMultiRetailPriceResponseInterface { retailPrices?: GetMultiRetailPriceResponseRetailPriceResponseInterface[]; } export interface GetRetailPriceRequestInterface { appId?: string; editionId?: string; businessId?: string; partnerMarket?: PartnerMarketContainerInterface; dontUseMsrp?: boolean; } export interface GetRetailPriceResponseInterface { retailPrice?: RetailPriceInterface; } export interface PartnerMarketContainerInterface { marketId?: string; partnerId?: string; } export interface ProductIdentifierInterface { appId?: string; editionId?: string; } export interface GetMultiRetailPriceResponseRetailPriceResponseInterface { productId?: ProductIdentifierInterface; retailPrice?: RetailPriceInterface; }