Class: Google::Apis::LanguageV1::TextSpan

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

Overview

Represents an output piece of text.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TextSpan

Returns a new instance of TextSpan



482
483
484
# File 'generated/google/apis/language_v1/classes.rb', line 482

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

Instance Attribute Details

#begin_offsetFixnum

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

Returns:

  • (Fixnum)


475
476
477
# File 'generated/google/apis/language_v1/classes.rb', line 475

def begin_offset
  @begin_offset
end

#contentString

The content of the output text. Corresponds to the JSON property content

Returns:

  • (String)


480
481
482
# File 'generated/google/apis/language_v1/classes.rb', line 480

def content
  @content
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



487
488
489
490
# File 'generated/google/apis/language_v1/classes.rb', line 487

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