Skip to content

Latest commit

 

History

History
68 lines (62 loc) · 2.91 KB

File metadata and controls

68 lines (62 loc) · 2.91 KB

UltracartClient::OrderSummary

Properties

Name Type Description Notes
actual_fulfillment Currency [optional]
actual_other_cost Currency [optional]
actual_payment_processing Currency [optional]
actual_profit Currency [optional]
actual_profit_analyzed Boolean Actual profit has been analyzed [optional]
actual_profit_review Boolean Actual profit needs review [optional]
actual_shipping Currency [optional]
arbitrary_shipping_handling_total Currency [optional]
health_benefit_card_amount Currency [optional]
health_benefit_card_refunded Currency [optional]
internal_gift_certificate_amount Currency [optional]
internal_gift_certificate_refunded Currency [optional]
other_refunded Currency [optional]
shipping_handling_refunded Currency [optional]
shipping_handling_total Currency [optional]
shipping_handling_total_discount Currency [optional]
subtotal Currency [optional]
subtotal_discount Currency [optional]
subtotal_discount_refunded Currency [optional]
subtotal_refunded Currency [optional]
tax Currency [optional]
tax_refunded Currency [optional]
taxable_subtotal Currency [optional]
taxable_subtotal_discount Currency [optional]
total Currency [optional]
total_refunded Currency [optional]

Example

require 'ultracart_api'

instance = UltracartClient::OrderSummary.new(
  actual_fulfillment: null,
  actual_other_cost: null,
  actual_payment_processing: null,
  actual_profit: null,
  actual_profit_analyzed: null,
  actual_profit_review: null,
  actual_shipping: null,
  arbitrary_shipping_handling_total: null,
  health_benefit_card_amount: null,
  health_benefit_card_refunded: null,
  internal_gift_certificate_amount: null,
  internal_gift_certificate_refunded: null,
  other_refunded: null,
  shipping_handling_refunded: null,
  shipping_handling_total: null,
  shipping_handling_total_discount: null,
  subtotal: null,
  subtotal_discount: null,
  subtotal_discount_refunded: null,
  subtotal_refunded: null,
  tax: null,
  tax_refunded: null,
  taxable_subtotal: null,
  taxable_subtotal_discount: null,
  total: null,
  total_refunded: null
)