public GetLowestOfferListingsForASINRequest(string sellerId, string marketplaceId, ASINListType asinList) : base()
 {
     this._sellerId      = sellerId;
     this._marketplaceId = marketplaceId;
     this._asinList      = asinList;
 }
 /// <summary>
 /// Sets the ASINList property.
 /// </summary>
 /// <param name="asinList">ASINList property.</param>
 /// <returns>this instance.</returns>
 public GetLowestOfferListingsForASINRequest WithASINList(ASINListType asinList)
 {
     this._asinList = asinList;
     return(this);
 }