Ejemplo n.º 1
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerId                 = reader.Read <string>("SellerId");
     _mwsAuthToken             = reader.Read <string>("MWSAuthToken");
     _marketplace              = reader.Read <string>("Marketplace");
     _marketplaceId            = reader.Read <string>("MarketplaceId");
     _sellerFulfillmentOrderId = reader.Read <string>("SellerFulfillmentOrderId");
     _displayableOrderId       = reader.Read <string>("DisplayableOrderId");
     _displayableOrderDateTime = reader.Read <DateTime?>("DisplayableOrderDateTime");
     _displayableOrderComment  = reader.Read <string>("DisplayableOrderComment");
     _shippingSpeedCategory    = reader.Read <string>("ShippingSpeedCategory");
     _destinationAddress       = reader.Read <Address>("DestinationAddress");
     _fulfillmentAction        = reader.Read <string>("FulfillmentAction");
     _fulfillmentPolicy        = reader.Read <string>("FulfillmentPolicy");
     _fulfillmentMethod        = reader.Read <string>("FulfillmentMethod");
     _shipFromCountryCode      = reader.Read <string>("ShipFromCountryCode");
     _notificationEmailList    = reader.Read <NotificationEmailList>("NotificationEmailList");
     _items = reader.Read <UpdateFulfillmentOrderItemList>("Items");
 }
Ejemplo n.º 2
0
 public override void ReadFragmentFrom(IMwsReader reader)
 {
     _sellerFulfillmentOrderId = reader.Read <string>("SellerFulfillmentOrderId");
     _marketplaceId            = reader.Read <string>("MarketplaceId");
     _displayableOrderId       = reader.Read <string>("DisplayableOrderId");
     _displayableOrderDateTime = reader.Read <DateTime?>("DisplayableOrderDateTime");
     _displayableOrderComment  = reader.Read <string>("DisplayableOrderComment");
     _shippingSpeedCategory    = reader.Read <string>("ShippingSpeedCategory");
     _deliveryWindow           = reader.Read <DeliveryWindow>("DeliveryWindow");
     _destinationAddress       = reader.Read <Address>("DestinationAddress");
     _fulfillmentAction        = reader.Read <string>("FulfillmentAction");
     _fulfillmentPolicy        = reader.Read <string>("FulfillmentPolicy");
     _fulfillmentMethod        = reader.Read <string>("FulfillmentMethod");
     _codSettings            = reader.Read <CODSettings>("CODSettings");
     _receivedDateTime       = reader.Read <DateTime?>("ReceivedDateTime");
     _fulfillmentOrderStatus = reader.Read <string>("FulfillmentOrderStatus");
     _statusUpdatedDateTime  = reader.Read <DateTime?>("StatusUpdatedDateTime");
     _notificationEmailList  = reader.Read <NotificationEmailList>("NotificationEmailList");
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Sets the NotificationEmailList property.
 /// </summary>
 /// <param name="notificationEmailList">NotificationEmailList property.</param>
 /// <returns>this instance.</returns>
 public UpdateFulfillmentOrderRequest WithNotificationEmailList(NotificationEmailList notificationEmailList)
 {
     this._notificationEmailList = notificationEmailList;
     return(this);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Sets the NotificationEmailList property.
 /// </summary>
 /// <param name="notificationEmailList">NotificationEmailList property.</param>
 /// <returns>this instance.</returns>
 public FulfillmentOrder WithNotificationEmailList(NotificationEmailList notificationEmailList)
 {
     this._notificationEmailList = notificationEmailList;
     return(this);
 }