Class: Google::Apis::LanguageV1::XpsCategoryStatsSingleCategoryStats

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

Overview

The statistics of a single CATEGORY value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsCategoryStatsSingleCategoryStats

Returns a new instance of XpsCategoryStatsSingleCategoryStats.



1440
1441
1442
# File 'lib/google/apis/language_v1/classes.rb', line 1440

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

Instance Attribute Details

#countFixnum

The number of occurrences of this value in the series. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1433
1434
1435
# File 'lib/google/apis/language_v1/classes.rb', line 1433

def count
  @count
end

#valueString

The CATEGORY value. Corresponds to the JSON property value

Returns:

  • (String)


1438
1439
1440
# File 'lib/google/apis/language_v1/classes.rb', line 1438

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1445
1446
1447
1448
# File 'lib/google/apis/language_v1/classes.rb', line 1445

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