Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaUserEventImportSummary

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2alphaUserEventImportSummary

Returns a new instance of GoogleCloudRetailV2alphaUserEventImportSummary.



2420
2421
2422
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2420

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#joined_events_countFixnum

Count of user events imported with complete existing catalog information. Corresponds to the JSON property joinedEventsCount

Returns:

  • (Fixnum)


2412
2413
2414
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2412

def joined_events_count
  @joined_events_count
end

#unjoined_events_countFixnum

Count of user events imported, but with catalog information not found in the imported catalog. Corresponds to the JSON property unjoinedEventsCount

Returns:

  • (Fixnum)


2418
2419
2420
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2418

def unjoined_events_count
  @unjoined_events_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2425
2426
2427
2428
# File 'lib/google/apis/retail_v2beta/classes.rb', line 2425

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