Class: Google::Apis::VisionV1::DetectedLanguage
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::DetectedLanguage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb
Overview
Detected language for a structural component.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Confidence of detected language.
-
#language_code ⇒ String
The BCP-47 language code, such as "en-US" or "sr-Latn".
Instance Method Summary collapse
-
#initialize(**args) ⇒ DetectedLanguage
constructor
A new instance of DetectedLanguage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DetectedLanguage
Returns a new instance of DetectedLanguage.
965 966 967 |
# File 'lib/google/apis/vision_v1/classes.rb', line 965 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
Confidence of detected language. Range [0, 1].
Corresponds to the JSON property confidence
957 958 959 |
# File 'lib/google/apis/vision_v1/classes.rb', line 957 def confidence @confidence end |
#language_code ⇒ String
The BCP-47 language code, such as "en-US" or "sr-Latn". For more information,
see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
Corresponds to the JSON property languageCode
963 964 965 |
# File 'lib/google/apis/vision_v1/classes.rb', line 963 def language_code @language_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
970 971 972 973 |
# File 'lib/google/apis/vision_v1/classes.rb', line 970 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @language_code = args[:language_code] if args.key?(:language_code) end |