Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1TextAnnotationTextProperty

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

Overview

Additional information detected on the structural component.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVisionV1p1beta1TextAnnotationTextProperty

Returns a new instance of GoogleCloudVisionV1p1beta1TextAnnotationTextProperty.



2927
2928
2929
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2927

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

Instance Attribute Details

#detected_breakGoogle::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1TextAnnotationDetectedBreak

Detected start or end of a structural component. Corresponds to the JSON property detectedBreak



2920
2921
2922
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2920

def detected_break
  @detected_break
end

#detected_languagesArray<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p1beta1TextAnnotationDetectedLanguage>

A list of detected languages together with confidence. Corresponds to the JSON property detectedLanguages



2925
2926
2927
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2925

def detected_languages
  @detected_languages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2932
2933
2934
2935
# File 'lib/google/apis/vision_v1p1beta1/classes.rb', line 2932

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