Class: Google::Apis::RetailV2::GoogleCloudRetailV2PurchaseTransaction
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2::GoogleCloudRetailV2PurchaseTransaction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2/classes.rb,
lib/google/apis/retail_v2/representations.rb,
lib/google/apis/retail_v2/representations.rb
Overview
A transaction represents the entire purchase transaction.
Instance Attribute Summary collapse
-
#cost ⇒ Float
All the costs associated with the products.
-
#currency_code ⇒ String
Required.
-
#id ⇒ String
The transaction ID with a length limit of 128 characters.
-
#revenue ⇒ Float
Required.
-
#tax ⇒ Float
All the taxes associated with the transaction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2PurchaseTransaction
constructor
A new instance of GoogleCloudRetailV2PurchaseTransaction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2PurchaseTransaction
Returns a new instance of GoogleCloudRetailV2PurchaseTransaction.
2048 2049 2050 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2048 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cost ⇒ Float
All the costs associated with the products. These can be manufacturing costs,
shipping expenses not borne by the end user, or any other costs, such that: *
Profit = revenue - tax - cost
Corresponds to the JSON property cost
2024 2025 2026 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2024 def cost @cost end |
#currency_code ⇒ String
Required. Currency code. Use three-character ISO-4217 code.
Corresponds to the JSON property currencyCode
2029 2030 2031 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2029 def currency_code @currency_code end |
#id ⇒ String
The transaction ID with a length limit of 128 characters.
Corresponds to the JSON property id
2034 2035 2036 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2034 def id @id end |
#revenue ⇒ Float
Required. Total non-zero revenue or grand total associated with the
transaction. This value include shipping, tax, or other adjustments to total
revenue that you want to include as part of your revenue calculations.
Corresponds to the JSON property revenue
2041 2042 2043 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2041 def revenue @revenue end |
#tax ⇒ Float
All the taxes associated with the transaction.
Corresponds to the JSON property tax
2046 2047 2048 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2046 def tax @tax end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2053 2054 2055 2056 2057 2058 2059 |
# File 'lib/google/apis/retail_v2/classes.rb', line 2053 def update!(**args) @cost = args[:cost] if args.key?(:cost) @currency_code = args[:currency_code] if args.key?(:currency_code) @id = args[:id] if args.key?(:id) @revenue = args[:revenue] if args.key?(:revenue) @tax = args[:tax] if args.key?(:tax) end |