Class: Google::Apis::RetailV2::GoogleCloudRetailV2alphaTransformedUserEventsMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/retail_v2/classes.rb,
lib/google/apis/retail_v2/representations.rb,
lib/google/apis/retail_v2/representations.rb

Overview

Metadata related to transform user events operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2alphaTransformedUserEventsMetadata

Returns a new instance of GoogleCloudRetailV2alphaTransformedUserEventsMetadata.



7248
7249
7250
# File 'lib/google/apis/retail_v2/classes.rb', line 7248

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

Instance Attribute Details

#source_events_countFixnum

Count of entries in the source user events BigQuery table. Corresponds to the JSON property sourceEventsCount

Returns:

  • (Fixnum)


7240
7241
7242
# File 'lib/google/apis/retail_v2/classes.rb', line 7240

def source_events_count
  @source_events_count
end

#transformed_events_countFixnum

Count of entries in the transformed user events BigQuery table, which could be different from the actually imported number of user events. Corresponds to the JSON property transformedEventsCount

Returns:

  • (Fixnum)


7246
7247
7248
# File 'lib/google/apis/retail_v2/classes.rb', line 7246

def transformed_events_count
  @transformed_events_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7253
7254
7255
7256
# File 'lib/google/apis/retail_v2/classes.rb', line 7253

def update!(**args)
  @source_events_count = args[:source_events_count] if args.key?(:source_events_count)
  @transformed_events_count = args[:transformed_events_count] if args.key?(:transformed_events_count)
end