Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnalyzeContentRequest

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

Overview

The request message for Participants.AnalyzeContent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2AnalyzeContentRequest

Returns a new instance of GoogleCloudDialogflowV2AnalyzeContentRequest.



5750
5751
5752
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5750

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

Instance Attribute Details

#assist_query_paramsGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters

Represents the parameters of human assist query. Corresponds to the JSON property assistQueryParams



5716
5717
5718
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5716

def assist_query_params
  @assist_query_params
end

#event_inputGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2EventInput

Events allow for matching intents by event name instead of the natural language input. For instance, input `can trigger a personalized welcome response. The parameternamemay be used by the agent in the response:" Hello #welcome_event.name! What can I do for you today?". Corresponds to the JSON propertyeventInput`



5724
5725
5726
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5724

def event_input
  @event_input
end

#query_paramsGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryParameters

Represents the parameters of the conversational query. Corresponds to the JSON property queryParams



5729
5730
5731
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5729

def query_params
  @query_params
end

#reply_audio_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2OutputAudioConfig

Instructs the speech synthesizer on how to generate the output audio content. If this audio config is supplied in a request, it overrides all existing text- to-speech settings applied to the agent. Corresponds to the JSON property replyAudioConfig



5736
5737
5738
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5736

def reply_audio_config
  @reply_audio_config
end

#request_idString

A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if a request_id is provided. Corresponds to the JSON property requestId

Returns:

  • (String)


5743
5744
5745
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5743

def request_id
  @request_id
end

#text_inputGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2TextInput

Represents the natural language text to be processed. Corresponds to the JSON property textInput



5748
5749
5750
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5748

def text_input
  @text_input
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5755
5756
5757
5758
5759
5760
5761
5762
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5755

def update!(**args)
  @assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
  @event_input = args[:event_input] if args.key?(:event_input)
  @query_params = args[:query_params] if args.key?(:query_params)
  @reply_audio_config = args[:reply_audio_config] if args.key?(:reply_audio_config)
  @request_id = args[:request_id] if args.key?(:request_id)
  @text_input = args[:text_input] if args.key?(:text_input)
end