Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaUserEventImportSummary
- Inherits:
-
Object
- Object
- Google::Apis::RetailV2beta::GoogleCloudRetailV2betaUserEventImportSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/retail_v2beta/classes.rb,
lib/google/apis/retail_v2beta/representations.rb,
lib/google/apis/retail_v2beta/representations.rb
Overview
A summary of import result. The UserEventImportSummary summarizes the import status for user events.
Instance Attribute Summary collapse
-
#joined_events_count ⇒ Fixnum
Count of user events imported with complete existing catalog information.
-
#unjoined_events_count ⇒ Fixnum
Count of user events imported, but with catalog information not found in the imported catalog.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRetailV2betaUserEventImportSummary
constructor
A new instance of GoogleCloudRetailV2betaUserEventImportSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRetailV2betaUserEventImportSummary
Returns a new instance of GoogleCloudRetailV2betaUserEventImportSummary.
9140 9141 9142 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 9140 def initialize(**args) update!(**args) end |
Instance Attribute Details
#joined_events_count ⇒ Fixnum
Count of user events imported with complete existing catalog information.
Corresponds to the JSON property joinedEventsCount
9132 9133 9134 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 9132 def joined_events_count @joined_events_count end |
#unjoined_events_count ⇒ Fixnum
Count of user events imported, but with catalog information not found in the
imported catalog.
Corresponds to the JSON property unjoinedEventsCount
9138 9139 9140 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 9138 def unjoined_events_count @unjoined_events_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9145 9146 9147 9148 |
# File 'lib/google/apis/retail_v2beta/classes.rb', line 9145 def update!(**args) @joined_events_count = args[:joined_events_count] if args.key?(:joined_events_count) @unjoined_events_count = args[:unjoined_events_count] if args.key?(:unjoined_events_count) end |