Class: Google::Apis::LanguageV2::XpsTranslationPreprocessResponse

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

Translation preprocess response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsTranslationPreprocessResponse

Returns a new instance of XpsTranslationPreprocessResponse.



4606
4607
4608
# File 'lib/google/apis/language_v2/classes.rb', line 4606

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

Instance Attribute Details

#parsed_example_countFixnum

Total example count parsed. Corresponds to the JSON property parsedExampleCount

Returns:

  • (Fixnum)


4599
4600
4601
# File 'lib/google/apis/language_v2/classes.rb', line 4599

def parsed_example_count
  @parsed_example_count
end

#valid_example_countFixnum

Total valid example count. Corresponds to the JSON property validExampleCount

Returns:

  • (Fixnum)


4604
4605
4606
# File 'lib/google/apis/language_v2/classes.rb', line 4604

def valid_example_count
  @valid_example_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4611
4612
4613
4614
# File 'lib/google/apis/language_v2/classes.rb', line 4611

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