Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnalyzeContentResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnalyzeContentResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#automated_agent_reply ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AutomatedAgentReply
Corresponds to the JSON property
automatedAgentReply. -
#dtmf_parameters ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1DtmfParameters
Corresponds to the JSON property
dtmfParameters. -
#end_user_suggestion_results ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionResult>
Corresponds to the JSON property
endUserSuggestionResults. -
#human_agent_suggestion_results ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionResult>
Corresponds to the JSON property
humanAgentSuggestionResults. -
#message ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Message
Corresponds to the JSON property
message. -
#reply_audio ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OutputAudio
Corresponds to the JSON property
replyAudio. -
#reply_text ⇒ String
Corresponds to the JSON property
replyText.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AnalyzeContentResponse
constructor
A new instance of GoogleCloudDialogflowV2beta1AnalyzeContentResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AnalyzeContentResponse
Returns a new instance of GoogleCloudDialogflowV2beta1AnalyzeContentResponse.
11614 11615 11616 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11614 def initialize(**args) update!(**args) end |
Instance Attribute Details
#automated_agent_reply ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AutomatedAgentReply
Corresponds to the JSON property automatedAgentReply
11582 11583 11584 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11582 def automated_agent_reply @automated_agent_reply end |
#dtmf_parameters ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1DtmfParameters
Corresponds to the JSON property dtmfParameters
11587 11588 11589 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11587 def dtmf_parameters @dtmf_parameters end |
#end_user_suggestion_results ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionResult>
Corresponds to the JSON property endUserSuggestionResults
11592 11593 11594 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11592 def end_user_suggestion_results @end_user_suggestion_results end |
#human_agent_suggestion_results ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionResult>
Corresponds to the JSON property humanAgentSuggestionResults
11597 11598 11599 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11597 def human_agent_suggestion_results @human_agent_suggestion_results end |
#message ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Message
Corresponds to the JSON property message
11602 11603 11604 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11602 def @message end |
#reply_audio ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OutputAudio
Corresponds to the JSON property replyAudio
11607 11608 11609 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11607 def reply_audio @reply_audio end |
#reply_text ⇒ String
Corresponds to the JSON property replyText
11612 11613 11614 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11612 def reply_text @reply_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11619 11620 11621 11622 11623 11624 11625 11626 11627 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11619 def update!(**args) @automated_agent_reply = args[:automated_agent_reply] if args.key?(:automated_agent_reply) @dtmf_parameters = args[:dtmf_parameters] if args.key?(:dtmf_parameters) @end_user_suggestion_results = args[:end_user_suggestion_results] if args.key?(:end_user_suggestion_results) @human_agent_suggestion_results = args[:human_agent_suggestion_results] if args.key?(:human_agent_suggestion_results) @message = args[:message] if args.key?(:message) @reply_audio = args[:reply_audio] if args.key?(:reply_audio) @reply_text = args[:reply_text] if args.key?(:reply_text) end |