Exemple #1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId      = reader.Read <string>("SellerId");
     _mwsAuthToken  = reader.Read <string>("MWSAuthToken");
     _marketplaceId = reader.Read <string>("MarketplaceId");
     _sellerSKUList = reader.Read <SellerSKUListType>("SellerSKUList");
 }
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId      = reader.Read <string>("SellerId");
     _mwsAuthToken  = reader.Read <string>("MWSAuthToken");
     _marketplaceId = reader.Read <string>("MarketplaceId");
     _sellerSKUList = reader.Read <SellerSKUListType>("SellerSKUList");
     _itemCondition = reader.Read <string>("ItemCondition");
     _excludeMe     = reader.Read <bool?>("ExcludeMe");
 }
Exemple #3
0
 public GetMyPriceForSKURequest(string sellerId, string marketplaceId, SellerSKUListType sellerSKUList) : base()
 {
     this._sellerId      = sellerId;
     this._marketplaceId = marketplaceId;
     this._sellerSKUList = sellerSKUList;
 }
Exemple #4
0
 /// <summary>
 /// Sets the SellerSKUList property.
 /// </summary>
 /// <param name="sellerSKUList">SellerSKUList property.</param>
 /// <returns>this instance.</returns>
 public GetMyPriceForSKURequest WithSellerSKUList(SellerSKUListType sellerSKUList)
 {
     this._sellerSKUList = sellerSKUList;
     return(this);
 }
 public GetLowestOfferListingsForSKURequest(string sellerId, string marketplaceId, SellerSKUListType sellerSKUList) : base()
 {
     this._sellerId      = sellerId;
     this._marketplaceId = marketplaceId;
     this._sellerSKUList = sellerSKUList;
 }
 /// <summary>
 /// Sets the SellerSKUList property.
 /// </summary>
 /// <param name="sellerSKUList">SellerSKUList property.</param>
 /// <returns>this instance.</returns>
 public GetLowestOfferListingsForSKURequest WithSellerSKUList(SellerSKUListType sellerSKUList)
 {
     this._sellerSKUList = sellerSKUList;
     return(this);
 }
Exemple #7
0
 /// <summary>
 /// Sets the SellerSKUList property.
 /// </summary>
 /// <param name="sellerSKUList">SellerSKUList property.</param>
 /// <returns>this instance.</returns>
 public GetCompetitivePricingForSKURequest WithSellerSKUList(SellerSKUListType sellerSKUList)
 {
     this._sellerSKUList = sellerSKUList;
     return(this);
 }