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