Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 2.7 KB

File metadata and controls

56 lines (50 loc) · 2.7 KB

UltracartClient::OrderPayment

Properties

Name Type Description Notes
check OrderPaymentCheck [optional]
credit_card OrderPaymentCreditCard [optional]
echeck OrderPaymentECheck [optional]
health_benefit_card OrderPaymentHealthBenefitCard [optional]
hold_for_fraud_review Boolean True if order has been held for fraud review [optional]
insurance OrderPaymentInsurance [optional]
payment_dts String Date/time that the payment was successfully processed, for new orders, this field is only considered if channel_partner.skip_payment_processing is true [optional]
payment_method String Payment method [optional]
payment_method_accounting_code String Payment method QuickBooks code [optional]
payment_method_deposit_to_account String Payment method QuickBooks deposit account [optional]
payment_status String Payment status [optional]
paypal OrderPaymentPayPal [optional]
purchase_order OrderPaymentPurchaseOrder [optional]
rotating_transaction_gateway_code String Rotating transaction gateway code used to process this order [optional]
surcharge Currency [optional]
surcharge_accounting_code String Surcharge accounting code [optional]
surcharge_transaction_fee Float Surcharge transaction fee [optional]
surcharge_transaction_percentage Float Surcharge transaction percentage [optional]
test_order Boolean True if this is a test order [optional]
transactions Array<OrderPaymentTransaction> Transactions associated with processing this payment [optional]

Example

require 'ultracart_api'

instance = UltracartClient::OrderPayment.new(
  check: null,
  credit_card: null,
  echeck: null,
  health_benefit_card: null,
  hold_for_fraud_review: null,
  insurance: null,
  payment_dts: null,
  payment_method: null,
  payment_method_accounting_code: null,
  payment_method_deposit_to_account: null,
  payment_status: null,
  paypal: null,
  purchase_order: null,
  rotating_transaction_gateway_code: null,
  surcharge: null,
  surcharge_accounting_code: null,
  surcharge_transaction_fee: null,
  surcharge_transaction_percentage: null,
  test_order: null,
  transactions: null
)