Class: Google::Apis::VisionV1::TextProperty

Inherits:
Object
  • Object
show all
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
more...

Overview

Additional information detected on the structural component.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TextProperty

Returns a new instance of TextProperty.

[View source]

10048
10049
10050
# File 'lib/google/apis/vision_v1/classes.rb', line 10048

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

Instance Attribute Details

#detected_breakGoogle::Apis::VisionV1::DetectedBreak

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


10041
10042
10043
# File 'lib/google/apis/vision_v1/classes.rb', line 10041

def detected_break
  @detected_break
end

#detected_languagesArray<Google::Apis::VisionV1::DetectedLanguage>

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


10046
10047
10048
# File 'lib/google/apis/vision_v1/classes.rb', line 10046

def detected_languages
  @detected_languages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

10053
10054
10055
10056
# File 'lib/google/apis/vision_v1/classes.rb', line 10053

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