Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.78 KB

File metadata and controls

42 lines (36 loc) · 1.78 KB

UltracartClient::AvalaraConfig

Properties

Name Type Description Notes
account_id String Avalara account ID [optional]
active Boolean True if Avalara is active for this merchant [optional]
avalara_oid Integer Unique identifier for this avalara config object [optional]
company_id String Avalara company ID [optional]
enable_upc Boolean True if this Avalara configuration is set to enable tax valuation by UPC [optional]
estimate_only Boolean True if this Avalara configuration is to estimate taxes only and not report placed orders to Avalara [optional]
guest_customer_code String Optional customer code for customers without profiles, defaults to GuestCustomer [optional]
last_test_dts String Date/time of the connection test to Avalara [optional]
license_key String Avalara license key [optional]
sandbox Boolean True if this Avalara instance is pointed at the Avalara Sandbox [optional]
send_test_orders Boolean Send test orders through to Avalara. The default is to not transmit test orders to Avalara. [optional]
service_url String Avalara service URL [optional]
test_results String Test results of the last connection test to Avalara [optional]

Example

require 'ultracart_api'

instance = UltracartClient::AvalaraConfig.new(
  account_id: null,
  active: null,
  avalara_oid: null,
  company_id: null,
  enable_upc: null,
  estimate_only: null,
  guest_customer_code: null,
  last_test_dts: null,
  license_key: null,
  sandbox: null,
  send_test_orders: null,
  service_url: null,
  test_results: null
)