Class: Google::Apis::LanguageV2::XpsDataErrors

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

Overview

Different types of errors and the stats associatesd with each error.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsDataErrors

Returns a new instance of XpsDataErrors.



1700
1701
1702
# File 'lib/google/apis/language_v2/classes.rb', line 1700

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

Instance Attribute Details

#countFixnum

Number of records having errors associated with the enum. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1693
1694
1695
# File 'lib/google/apis/language_v2/classes.rb', line 1693

def count
  @count
end

#error_typeString

Type of the error. Corresponds to the JSON property errorType

Returns:

  • (String)


1698
1699
1700
# File 'lib/google/apis/language_v2/classes.rb', line 1698

def error_type
  @error_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1705
1706
1707
1708
# File 'lib/google/apis/language_v2/classes.rb', line 1705

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