Name | Type | Description | Notes |
---|---|---|---|
order_reference | String | [optional] | |
recipient | RecipientDetailsRequest | ||
sender | SenderDetailsRequest | [optional] | |
billing | BillingDetailsRequest | [optional] | |
packages | Array<ShipmentPackageRequest> | [optional] | |
order_date | Time | ||
planned_despatch_date | Time | [optional] | |
special_instructions | String | [optional] | |
subtotal | Float | ||
shipping_cost_charged | Float | ||
other_costs | Float | [optional] | |
customs_duty_costs | Float | Customs Duty Costs is only supported in DDP (Delivery Duty Paid) services | [optional] |
total | Float | ||
currency_code | String | [optional] | |
postage_details | PostageDetailsRequest | [optional] | |
tags | Array<TagRequest> | [optional] | |
label | LabelGenerationRequest | [optional] |
require 'click_and_drop'
instance = ClickAndDrop::CreateOrderRequest.new(
order_reference: null,
recipient: null,
sender: null,
billing: null,
packages: null,
order_date: null,
planned_despatch_date: null,
special_instructions: null,
subtotal: null,
shipping_cost_charged: null,
other_costs: null,
customs_duty_costs: null,
total: null,
currency_code: null,
postage_details: null,
tags: null,
label: null
)