Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.69 KB

File metadata and controls

42 lines (36 loc) · 1.69 KB

UltracartClient::AffiliateClick

Properties

Name Type Description Notes
affiliate_click_oid Integer Unique object identifier for this click [optional]
affiliate_link_oid Integer Unique object identifier for for the link that this click is associated with [optional]
affiliate_oid Integer Affiliate object ID associated with this click [optional]
click_dts String Date/time that the click was made [optional]
ip_address String IP address that generated the click [optional]
landing_page String URL of the landing page the customer was sent to. [optional]
landing_page_query_string String Query string on the landing page URL the customer was sent to. [optional]
link AffiliateLink [optional]
referrer String URL that referred the click (Browser Header Referer) [optional]
referrer_query_string String Query string that was on the referrer URL. [optional]
screen_recording_uuid String Screen recording UUID [optional]
sub_id String Sub ID value passed on the click [optional]
ucacid String UC Analytics Identifier [optional]

Example

require 'ultracart_api'

instance = UltracartClient::AffiliateClick.new(
  affiliate_click_oid: null,
  affiliate_link_oid: null,
  affiliate_oid: null,
  click_dts: null,
  ip_address: null,
  landing_page: null,
  landing_page_query_string: null,
  link: null,
  referrer: null,
  referrer_query_string: null,
  screen_recording_uuid: null,
  sub_id: null,
  ucacid: null
)