public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId           = reader.Read <string>("SellerId");
     _mwsAuthToken       = reader.Read <string>("MWSAuthToken");
     _marketplace        = reader.Read <string>("Marketplace");
     _queryStartDateTime = reader.Read <DateTime?>("QueryStartDateTime");
     _fulfillmentMethod  = reader.Read <FulfillmentMethodList>("FulfillmentMethod");
 }
 /// <summary>
 /// Sets the FulfillmentMethod property.
 /// </summary>
 /// <param name="fulfillmentMethod">FulfillmentMethod property.</param>
 /// <returns>this instance.</returns>
 public ListAllFulfillmentOrdersRequest WithFulfillmentMethod(FulfillmentMethodList fulfillmentMethod)
 {
     this._fulfillmentMethod = fulfillmentMethod;
     return(this);
 }