Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.32 KB

File metadata and controls

38 lines (32 loc) · 1.32 KB

UltracartClient::OrderItemOption

Properties

Name Type Description Notes
additional_dimension_application String How the additional dimensions are applied to the item. [optional]
cost_change Currency [optional]
file_attachment OrderItemOptionFileAttachment [optional]
height Distance [optional]
hidden Boolean True if this option is hidden from display on the order [optional]
label String Label [optional]
length Distance [optional]
one_time_fee Boolean True if the cost associated with this option is a one time fee or multiplied by the quantity of the item [optional]
value String Value [optional]
weight_change Weight [optional]
width Distance [optional]

Example

require 'ultracart_api'

instance = UltracartClient::OrderItemOption.new(
  additional_dimension_application: null,
  cost_change: null,
  file_attachment: null,
  height: null,
  hidden: null,
  label: null,
  length: null,
  one_time_fee: null,
  value: null,
  weight_change: null,
  width: null
)