Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed GetFulfillmentPreview call #711

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,20 @@ public GetFulfillmentPreviewItem() { }
/// The seller SKU of the item.
/// </summary>
/// <value>The seller SKU of the item.</value>
[DataMember(Name = "SellerSKU", EmitDefaultValue = false)]
[DataMember(Name = "sellerSku", EmitDefaultValue = false)]
public string SellerSKU { get; set; }

/// <summary>
/// Gets or Sets Quantity
/// </summary>
[DataMember(Name = "Quantity", EmitDefaultValue = false)]
[DataMember(Name = "quantity", EmitDefaultValue = false)]
public int Quantity { get; set; }

/// <summary>
/// A fulfillment order item identifier that the seller creates to track items in the fulfillment preview.
/// </summary>
/// <value>A fulfillment order item identifier that the seller creates to track items in the fulfillment preview.</value>
[DataMember(Name = "SellerFulfillmentOrderItemId", EmitDefaultValue = false)]
[DataMember(Name = "sellerFulfillmentOrderItemId", EmitDefaultValue = false)]
public string SellerFulfillmentOrderItemId { get; set; }

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,42 +68,42 @@ public GetFulfillmentPreviewRequest() { }
/// The marketplace the fulfillment order is placed against.
/// </summary>
/// <value>The marketplace the fulfillment order is placed against.</value>
[DataMember(Name = "MarketplaceId", EmitDefaultValue = false)]
[DataMember(Name = "marketplaceId", EmitDefaultValue = false)]
public string MarketplaceId { get; set; }

/// <summary>
/// The destination address for the fulfillment order preview.
/// </summary>
/// <value>The destination address for the fulfillment order preview.</value>
[DataMember(Name = "Address", EmitDefaultValue = false)]
[DataMember(Name = "address", EmitDefaultValue = false)]
public Address Address { get; set; }

/// <summary>
/// Identifying information and quantity information for the items in the fulfillment order preview.
/// </summary>
/// <value>Identifying information and quantity information for the items in the fulfillment order preview.</value>
[DataMember(Name = "Items", EmitDefaultValue = false)]
[DataMember(Name = "items", EmitDefaultValue = false)]
public GetFulfillmentPreviewItemList Items { get; set; }

/// <summary>
/// A list of shipping methods used for creating fulfillment order previews. Note: Shipping method service level agreements vary by marketplace. Sellers should see the Seller Central website in their marketplace for shipping method service level agreements and fulfillment fees.
/// </summary>
/// <value>A list of shipping methods used for creating fulfillment order previews. Note: Shipping method service level agreements vary by marketplace. Sellers should see the Seller Central website in their marketplace for shipping method service level agreements and fulfillment fees.</value>
[DataMember(Name = "ShippingSpeedCategories", EmitDefaultValue = false)]
[DataMember(Name = "shippingSpeedCategories", EmitDefaultValue = false)]
public ShippingSpeedCategoryList ShippingSpeedCategories { get; set; }

/// <summary>
/// Specifies whether to return fulfillment order previews that are for COD (Cash On Delivery). Possible values: true - Returns all fulfillment order previews (both for COD and not for COD). false - Returns only fulfillment order previews that are not for COD.
/// </summary>
/// <value>Specifies whether to return fulfillment order previews that are for COD (Cash On Delivery). Possible values: true - Returns all fulfillment order previews (both for COD and not for COD). false - Returns only fulfillment order previews that are not for COD.</value>
[DataMember(Name = "IncludeCODFulfillmentPreview", EmitDefaultValue = false)]
[DataMember(Name = "includeCODFulfillmentPreview", EmitDefaultValue = false)]
public bool? IncludeCODFulfillmentPreview { get; set; }

/// <summary>
/// Specifies whether to return the ScheduledDeliveryInfo response object, which contains the available delivery windows for a Scheduled Delivery. The ScheduledDeliveryInfo response object can only be returned for fulfillment order previews with ShippingSpeedCategories &#x3D; ScheduledDelivery.
/// </summary>
/// <value>Specifies whether to return the ScheduledDeliveryInfo response object, which contains the available delivery windows for a Scheduled Delivery. The ScheduledDeliveryInfo response object can only be returned for fulfillment order previews with ShippingSpeedCategories &#x3D; ScheduledDelivery.</value>
[DataMember(Name = "IncludeDeliveryWindows", EmitDefaultValue = false)]
[DataMember(Name = "includeDeliveryWindows", EmitDefaultValue = false)]
public bool? IncludeDeliveryWindows { get; set; }

/// <summary>
Expand Down
Loading