class Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1UserEventImportSummary

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/recommendationengine_v1beta1/classes.rb, line 1705
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 1710
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