Beispiel #1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId           = reader.Read <string>("SellerId");
     _mwsAuthToken       = reader.Read <string>("MWSAuthToken");
     _marketplace        = reader.Read <string>("Marketplace");
     _shipmentStatusList = reader.Read <ShipmentStatusList>("ShipmentStatusList");
     _shipmentIdList     = reader.Read <ShipmentIdList>("ShipmentIdList");
     _lastUpdatedBefore  = reader.Read <DateTime?>("LastUpdatedBefore");
     _lastUpdatedAfter   = reader.Read <DateTime?>("LastUpdatedAfter");
 }
 /// <summary>
 /// Sets the ShipmentIdList property.
 /// </summary>
 /// <param name="shipmentIdList">ShipmentIdList property.</param>
 /// <returns>this instance.</returns>
 public ListInboundShipmentsRequest WithShipmentIdList(ShipmentIdList shipmentIdList)
 {
     this._shipmentIdList = shipmentIdList;
     return this;
 }
Beispiel #3
0
 /// <summary>
 /// Sets the ShipmentIdList property.
 /// </summary>
 /// <param name="shipmentIdList">ShipmentIdList property.</param>
 /// <returns>this instance.</returns>
 public ListInboundShipmentsRequest WithShipmentIdList(ShipmentIdList shipmentIdList)
 {
     this._shipmentIdList = shipmentIdList;
     return(this);
 }
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId = reader.Read<string>("SellerId");
     _mwsAuthToken = reader.Read<string>("MWSAuthToken");
     _marketplace = reader.Read<string>("Marketplace");
     _shipmentStatusList = reader.Read<ShipmentStatusList>("ShipmentStatusList");
     _shipmentIdList = reader.Read<ShipmentIdList>("ShipmentIdList");
     _lastUpdatedBefore = reader.Read<DateTime?>("LastUpdatedBefore");
     _lastUpdatedAfter = reader.Read<DateTime?>("LastUpdatedAfter");
 }