Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.07 KB

File metadata and controls

28 lines (22 loc) · 1.07 KB

UltracartClient::AnrokConfig

Properties

Name Type Description Notes
api_key String Anrok API key [optional]
default_product_id String Default Anrok Product ID, used for cart items that do not have their own Anrok Product ID assigned [optional]
estimate_only Boolean True if this Anrok configuration is to estimate taxes only and not report placed orders to Anrok [optional]
last_test_dts String Date/time of the connection test to Anrok [optional]
shipping_product_id String Anrok Product ID used to classify shipping/handling charges; must be created in Anrok and mapped to the Shipping cost tax category [optional]
test_results String Test results of the last connection test to Anrok [optional]

Example

require 'ultracart_api'

instance = UltracartClient::AnrokConfig.new(
  api_key: null,
  default_product_id: null,
  estimate_only: null,
  last_test_dts: null,
  shipping_product_id: null,
  test_results: null
)