Class: Google::Apis::CommentanalyzerV1alpha1::TextEntry

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

Overview

Represents a body of text.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TextEntry

Returns a new instance of TextEntry.



468
469
470
# File 'generated/google/apis/commentanalyzer_v1alpha1/classes.rb', line 468

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

Instance Attribute Details

#textString

UTF-8 encoded text. Corresponds to the JSON property text

Returns:

  • (String)


461
462
463
# File 'generated/google/apis/commentanalyzer_v1alpha1/classes.rb', line 461

def text
  @text
end

#typeString

Type of the text field. Corresponds to the JSON property type

Returns:

  • (String)


466
467
468
# File 'generated/google/apis/commentanalyzer_v1alpha1/classes.rb', line 466

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



473
474
475
476
# File 'generated/google/apis/commentanalyzer_v1alpha1/classes.rb', line 473

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