Ejemplo 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");
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Sets the ShipsFrom property.
 /// </summary>
 /// <param name="shipsFrom">ShipsFrom property.</param>
 /// <returns>this instance.</returns>
 public SKUOfferDetail WithShipsFrom(ShipsFromType shipsFrom)
 {
     this._shipsFrom = shipsFrom;
     return this;
 }
Ejemplo n.º 3
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);
 }
Ejemplo n.º 4
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _myOffer = reader.Read<bool>("MyOffer");
     _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");
 }