/// <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;
 }
 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");
 }