Class: Google::Apis::AnalyticsreportingV4::TransactionData
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsreportingV4::TransactionData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsreporting_v4/classes.rb,
lib/google/apis/analyticsreporting_v4/representations.rb,
lib/google/apis/analyticsreporting_v4/representations.rb more...
Overview
Represents details collected when the visitor performs a transaction on the page.
Instance Attribute Summary collapse
-
#transaction_id ⇒ String
The transaction ID, supplied by the e-commerce tracking method, for the purchase in the shopping cart.
-
#transaction_revenue ⇒ Float
The total sale revenue (excluding shipping and tax) of the transaction.
-
#transaction_shipping ⇒ Float
Total cost of shipping.
-
#transaction_tax ⇒ Float
Total tax for the transaction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TransactionData
constructor
A new instance of TransactionData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TransactionData
Returns a new instance of TransactionData.
1953 1954 1955 |
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1953 def initialize(**args) update!(**args) end |
Instance Attribute Details
#transaction_id ⇒ String
The transaction ID, supplied by the e-commerce tracking method, for the
purchase in the shopping cart.
Corresponds to the JSON property transactionId
1936 1937 1938 |
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1936 def transaction_id @transaction_id end |
#transaction_revenue ⇒ Float
The total sale revenue (excluding shipping and tax) of the transaction.
Corresponds to the JSON property transactionRevenue
1941 1942 1943 |
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1941 def transaction_revenue @transaction_revenue end |
#transaction_shipping ⇒ Float
Total cost of shipping.
Corresponds to the JSON property transactionShipping
1946 1947 1948 |
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1946 def transaction_shipping @transaction_shipping end |
#transaction_tax ⇒ Float
Total tax for the transaction.
Corresponds to the JSON property transactionTax
1951 1952 1953 |
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1951 def transaction_tax @transaction_tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1958 1959 1960 1961 1962 1963 |
# File 'lib/google/apis/analyticsreporting_v4/classes.rb', line 1958 def update!(**args) @transaction_id = args[:transaction_id] if args.key?(:transaction_id) @transaction_revenue = args[:transaction_revenue] if args.key?(:transaction_revenue) @transaction_shipping = args[:transaction_shipping] if args.key?(:transaction_shipping) @transaction_tax = args[:transaction_tax] if args.key?(:transaction_tax) end |