Ejemplo n.º 1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     this._subCondition         = reader.Read <string>("SubCondition");
     this._sellerFeedbackRating = reader.Read <SellerFeedbackType>("SellerFeedbackRating");
     this._shippingTime         = reader.Read <DetailedShippingTimeType>("ShippingTime");
     this._listingPrice         = reader.Read <MoneyType>("ListingPrice");
     this._points              = reader.Read <Points>("Points");
     this._shipping            = reader.Read <MoneyType>("Shipping");
     this._shipsFrom           = reader.Read <ShipsFromType>("ShipsFrom");
     this._isFulfilledByAmazon = reader.Read <bool>("IsFulfilledByAmazon");
     this._isBuyBoxWinner      = reader.Read <bool?>("IsBuyBoxWinner");
     this._isFeaturedMerchant  = reader.Read <bool?>("IsFeaturedMerchant");
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets the SellerFeedbackRating property.
 /// </summary>
 /// <param name="sellerFeedbackRating">SellerFeedbackRating property.</param>
 /// <returns>this instance.</returns>
 public SKUOfferDetail WithSellerFeedbackRating(SellerFeedbackType sellerFeedbackRating)
 {
     this._sellerFeedbackRating = sellerFeedbackRating;
     return(this);
 }