Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.18 KB

File metadata and controls

28 lines (22 loc) · 1.18 KB

UltracartClient::OrderInternal

Properties

Name Type Description Notes
exported_to_accounting Boolean True if the order has been exported to QuickBooks. If QuickBooks is not configured, then this will already be true [optional]
merchant_notes String Merchant notes. Full notes in non-transactional mode. Just used to write a new merchant note when transaction merchant notes enabled. [optional]
placed_by_user String If placed via the BEOE, this is the user that placed the order [optional]
refund_by_user String User that issued the refund [optional]
sales_rep_code String Sales rep code associated with the order [optional]
transactional_merchant_notes Array<OrderTransactionalMerchantNote> Transactional merchant notes [optional]

Example

require 'ultracart_api'

instance = UltracartClient::OrderInternal.new(
  exported_to_accounting: null,
  merchant_notes: null,
  placed_by_user: null,
  refund_by_user: null,
  sales_rep_code: null,
  transactional_merchant_notes: null
)