Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 733 Bytes

File metadata and controls

26 lines (20 loc) · 733 Bytes

UltracartClient::CartFinalizeOrderResponse

Properties

Name Type Description Notes
errors Array<String> Error messages if the order could not be completed [optional]
next_cart Cart [optional]
order Order [optional]
order_id String Order ID assigned to the order [optional]
successful Boolean True if the cart was converted successfully to an order [optional]

Example

require 'ultracart_api'

instance = UltracartClient::CartFinalizeOrderResponse.new(
  errors: null,
  next_cart: null,
  order: null,
  order_id: null,
  successful: null
)