Beispiel #1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId      = reader.Read <string>("SellerId");
     _mwsAuthToken  = reader.Read <string>("MWSAuthToken");
     _asinList      = reader.Read <AsinList>("ASINList");
     _marketplaceId = reader.Read <string>("MarketplaceId");
 }
Beispiel #2
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId          = reader.Read <string>("SellerId");
     _mwsAuthToken      = reader.Read <string>("MWSAuthToken");
     _ASINList          = reader.Read <AsinList>("ASINList");
     _shipToCountryCode = reader.Read <string>("ShipToCountryCode");
 }
Beispiel #3
0
 public GetInboundGuidanceForASINRequest(string sellerId, AsinList asinList, string marketplaceId) : base()
 {
     this._sellerId      = sellerId;
     this._asinList      = asinList;
     this._marketplaceId = marketplaceId;
 }
Beispiel #4
0
 /// <summary>
 /// Sets the ASINList property.
 /// </summary>
 /// <param name="asinList">ASINList property.</param>
 /// <returns>this instance.</returns>
 public GetInboundGuidanceForASINRequest WithASINList(AsinList asinList)
 {
     this._asinList = asinList;
     return(this);
 }
Beispiel #5
0
 public GetPrepInstructionsForASINRequest(string sellerId, AsinList ASINList, string shipToCountryCode) : base()
 {
     this._sellerId          = sellerId;
     this._ASINList          = ASINList;
     this._shipToCountryCode = shipToCountryCode;
 }
Beispiel #6
0
 /// <summary>
 /// Sets the ASINList property.
 /// </summary>
 /// <param name="ASINList">ASINList property.</param>
 /// <returns>this instance.</returns>
 public GetPrepInstructionsForASINRequest WithASINList(AsinList ASINList)
 {
     this._ASINList = ASINList;
     return(this);
 }