public override void ReadFragmentFrom(IMwsReader reader) { this._totalOfferCount = reader.Read <decimal>("TotalOfferCount"); this._numberOfOffers = reader.Read <NumberOfOffers>("NumberOfOffers"); this._lowestPrices = reader.Read <LowestPrices>("LowestPrices"); this._buyBoxPrices = reader.Read <BuyBoxPrices>("BuyBoxPrices"); this._listPrice = reader.Read <MoneyType>("ListPrice"); this._suggestedLowerPricePlusShipping = reader.Read <MoneyType>("SuggestedLowerPricePlusShipping"); this._buyBoxEligibleOffers = reader.Read <BuyBoxEligibleOffers>("BuyBoxEligibleOffers"); }
/// <summary> /// Sets the BuyBoxPrices property. /// </summary> /// <param name="buyBoxPrices">BuyBoxPrices property.</param> /// <returns>this instance.</returns> public Summary WithBuyBoxPrices(BuyBoxPrices buyBoxPrices) { this._buyBoxPrices = buyBoxPrices; return(this); }