Class: Google::Apis::LanguageV1::XpsDataErrors

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

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.



1988
1989
1990
# File 'lib/google/apis/language_v1/classes.rb', line 1988

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)


1981
1982
1983
# File 'lib/google/apis/language_v1/classes.rb', line 1981

def count
  @count
end

#error_typeString

Type of the error. Corresponds to the JSON property errorType

Returns:

  • (String)


1986
1987
1988
# File 'lib/google/apis/language_v1/classes.rb', line 1986

def error_type
  @error_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1993
1994
1995
1996
# File 'lib/google/apis/language_v1/classes.rb', line 1993

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