Class: Google::Apis::LanguageV1beta2::XpsArrayStats

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

Overview

The data statistics of a series of ARRAY values.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsArrayStats

Returns a new instance of XpsArrayStats.



1320
1321
1322
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1320

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

Instance Attribute Details

#common_statsGoogle::Apis::LanguageV1beta2::XpsCommonStats

Common statistics for a column with a specified data type. Corresponds to the JSON property commonStats



1313
1314
1315
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1313

def common_stats
  @common_stats
end

#member_statsGoogle::Apis::LanguageV1beta2::XpsDataStats

The data statistics of a series of values that share the same DataType. Corresponds to the JSON property memberStats



1318
1319
1320
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1318

def member_stats
  @member_stats
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1325
1326
1327
1328
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1325

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