Exemplo n.º 1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _shipmentId = reader.Read <string>("ShipmentId");
     _destinationFulfillmentCenterId = reader.Read <string>("DestinationFulfillmentCenterId");
     _shipToAddress = reader.Read <Address>("ShipToAddress");
     _labelPrepType = reader.Read <string>("LabelPrepType");
     _items         = reader.Read <InboundShipmentPlanItemList>("Items");
 }
Exemplo n.º 2
0
 /// <summary>
 /// Sets the Items property.
 /// </summary>
 /// <param name="items">Items property.</param>
 /// <returns>this instance.</returns>
 public InboundShipmentPlan WithItems(InboundShipmentPlanItemList items)
 {
     this._items = items;
     return this;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Sets the Items property.
 /// </summary>
 /// <param name="items">Items property.</param>
 /// <returns>this instance.</returns>
 public InboundShipmentPlan WithItems(InboundShipmentPlanItemList items)
 {
     this._items = items;
     return(this);
 }
Exemplo n.º 4
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _shipmentId = reader.Read<string>("ShipmentId");
     _destinationFulfillmentCenterId = reader.Read<string>("DestinationFulfillmentCenterId");
     _shipToAddress = reader.Read<Address>("ShipToAddress");
     _labelPrepType = reader.Read<string>("LabelPrepType");
     _items = reader.Read<InboundShipmentPlanItemList>("Items");
 }