Beispiel #1
0
 public GetMatchingProductForIdRequest(string sellerId, string marketplaceId, string idType, IdListType idList) : base()
 {
     this._sellerId      = sellerId;
     this._marketplaceId = marketplaceId;
     this._idType        = idType;
     this._idList        = idList;
 }
Beispiel #2
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId      = reader.Read <string>("SellerId");
     _mwsAuthToken  = reader.Read <string>("MWSAuthToken");
     _marketplaceId = reader.Read <string>("MarketplaceId");
     _idType        = reader.Read <string>("IdType");
     _idList        = reader.Read <IdListType>("IdList");
 }
Beispiel #3
0
 /// <summary>
 /// Sets the IdList property.
 /// </summary>
 /// <param name="idList">IdList property.</param>
 /// <returns>this instance.</returns>
 public GetMatchingProductForIdRequest WithIdList(IdListType idList)
 {
     this._idList = idList;
     return(this);
 }