Class: Google::Apis::LanguageV1beta2::TextSpan
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::TextSpan
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb
Overview
Represents a text span in the input document.
Instance Attribute Summary collapse
-
#begin_offset ⇒ Fixnum
The API calculates the beginning offset of the content in the original document according to the EncodingType specified in the API request.
-
#content ⇒ String
The content of the text span, which is a substring of the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TextSpan
constructor
A new instance of TextSpan.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TextSpan
Returns a new instance of TextSpan.
1233 1234 1235 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1233 def initialize(**args) update!(**args) end |
Instance Attribute Details
#begin_offset ⇒ Fixnum
The API calculates the beginning offset of the content in the original
document according to the EncodingType specified in the API request.
Corresponds to the JSON property beginOffset
1226 1227 1228 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1226 def begin_offset @begin_offset end |
#content ⇒ String
The content of the text span, which is a substring of the document.
Corresponds to the JSON property content
1231 1232 1233 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1231 def content @content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1238 1239 1240 1241 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 1238 def update!(**args) @begin_offset = args[:begin_offset] if args.key?(:begin_offset) @content = args[:content] if args.key?(:content) end |