class Google::Apis::RetailV2beta::GoogleCloudRetailV2betaUserEventImportSummary
A summary of import result. The UserEventImportSummary summarizes the import status for user events.
Attributes
joined_events_count[RW]
Count of user events imported with complete existing catalog information. Corresponds to the JSON property `joinedEventsCount` @return [Fixnum]
unjoined_events_count[RW]
Count of user events imported, but with catalog information not found in the imported catalog. Corresponds to the JSON property `unjoinedEventsCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/retail_v2beta/classes.rb, line 4184 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/retail_v2beta/classes.rb, line 4189 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