Class: Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1UserEventImportSummary
- Inherits:
-
Object
- Object
- Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1UserEventImportSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/recommendationengine_v1beta1/classes.rb,
lib/google/apis/recommendationengine_v1beta1/representations.rb,
lib/google/apis/recommendationengine_v1beta1/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) ⇒ GoogleCloudRecommendationengineV1beta1UserEventImportSummary
constructor
A new instance of GoogleCloudRecommendationengineV1beta1UserEventImportSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecommendationengineV1beta1UserEventImportSummary
Returns a new instance of GoogleCloudRecommendationengineV1beta1UserEventImportSummary.
1705 1706 1707 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1705 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
1697 1698 1699 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1697 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
1703 1704 1705 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 1703 def unjoined_events_count @unjoined_events_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1710 1711 1712 1713 |
# 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 |