Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 743 Bytes

File metadata and controls

26 lines (20 loc) · 743 Bytes

UltracartClient::CartItemOptionValue

Properties

Name Type Description Notes
additional_cost Currency [optional]
additional_weight Weight [optional]
default_value Boolean True if this is the default value [optional]
display_order Integer Display order of the option value [optional]
value String Value of the option the customer can select [optional]

Example

require 'ultracart_api'

instance = UltracartClient::CartItemOptionValue.new(
  additional_cost: null,
  additional_weight: null,
  default_value: null,
  display_order: null,
  value: null
)