class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TextInput

Represents the natural language text to be processed.

Attributes

text[RW]

Required. The UTF-8 encoded natural language text to be processed. Text length must not exceed 256 characters. Corresponds to the JSON property `text` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 8051
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 8056
def update!(**args)
  @text = args[:text] if args.key?(:text)
end