public override void ReadFragmentFrom(IMwsReader reader)
 {
     _totalOfferCount = reader.Read <decimal>("TotalOfferCount");
     _numberOfOffers  = reader.Read <NumberOfOffers>("NumberOfOffers");
     _lowestPrices    = reader.Read <LowestPrices>("LowestPrices");
     _buyBoxPrices    = reader.Read <BuyBoxPrices>("BuyBoxPrices");
     _listPrice       = reader.Read <MoneyType>("ListPrice");
     _suggestedLowerPricePlusShipping = reader.Read <MoneyType>("SuggestedLowerPricePlusShipping");
     _buyBoxEligibleOffers            = reader.Read <BuyBoxEligibleOffers>("BuyBoxEligibleOffers");
 }
Exemple #2
0
 /// <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;
 }
 /// <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);
 }
Exemple #4
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _totalOfferCount = reader.Read<decimal>("TotalOfferCount");
     _numberOfOffers = reader.Read<NumberOfOffers>("NumberOfOffers");
     _lowestPrices = reader.Read<LowestPrices>("LowestPrices");
     _buyBoxPrices = reader.Read<BuyBoxPrices>("BuyBoxPrices");
     _listPrice = reader.Read<MoneyType>("ListPrice");
     _suggestedLowerPricePlusShipping = reader.Read<MoneyType>("SuggestedLowerPricePlusShipping");
     _buyBoxEligibleOffers = reader.Read<BuyBoxEligibleOffers>("BuyBoxEligibleOffers");
 }