/// <summary>
 /// Sets the Price property.
 /// </summary>
 /// <param name="price">Price property.</param>
 /// <returns>this instance.</returns>
 public LowestOfferListingType WithPrice(PriceType price)
 {
     this._price = price;
     return this;
 }
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _qualifiers = reader.Read<QualifiersType>("Qualifiers");
     _numberOfOfferListingsConsidered = reader.Read<decimal?>("NumberOfOfferListingsConsidered");
     _sellerFeedbackCount = reader.Read<decimal>("SellerFeedbackCount");
     _price = reader.Read<PriceType>("Price");
     _multipleOffersAtLowestPrice = reader.Read<string>("MultipleOffersAtLowestPrice");
 }
Example #3
0
 /// <summary>
 /// Sets the BuyingPrice property.
 /// </summary>
 /// <param name="buyingPrice">BuyingPrice property.</param>
 /// <returns>this instance.</returns>
 public OfferType WithBuyingPrice(PriceType buyingPrice)
 {
     this._buyingPrice = buyingPrice;
     return this;
 }
Example #4
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _buyingPrice = reader.Read<PriceType>("BuyingPrice");
     _regularPrice = reader.Read<MoneyType>("RegularPrice");
     _fulfillmentChannel = reader.Read<string>("FulfillmentChannel");
     _itemCondition = reader.Read<string>("ItemCondition");
     _itemSubCondition = reader.Read<string>("ItemSubCondition");
     _sellerId = reader.Read<string>("SellerId");
     _sellerSKU = reader.Read<string>("SellerSKU");
 }
 /// <summary>
 /// Sets the Price property.
 /// </summary>
 /// <param name="price">Price property.</param>
 /// <returns>this instance.</returns>
 public CompetitivePriceType WithPrice(PriceType price)
 {
     this._price = price;
     return this;
 }
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _condition = reader.ReadAttribute<string>("condition");
     _subcondition = reader.ReadAttribute<string>("subcondition");
     _belongsToRequester = reader.ReadAttribute<bool?>("belongsToRequester");
     _competitivePriceId = reader.Read<string>("CompetitivePriceId");
     _price = reader.Read<PriceType>("Price");
 }