Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteraction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteraction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Instance Attribute Summary collapse
-
#answer_feedback ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AnswerFeedback
Corresponds to the JSON property
answerFeedback. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#missing_transition ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition
Corresponds to the JSON property
missingTransition. -
#partial_responses ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentResponse>
Corresponds to the JSON property
partialResponses. -
#request ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentRequest
Corresponds to the JSON property
request. -
#request_utterances ⇒ String
Corresponds to the JSON property
requestUtterances. -
#response ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentResponse
Corresponds to the JSON property
response. -
#response_utterances ⇒ String
Corresponds to the JSON property
responseUtterances. -
#step_metrics ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics>
Corresponds to the JSON property
stepMetrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationInteraction
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ConversationInteraction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationInteraction
Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationInteraction.
4964 4965 4966 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4964 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer_feedback ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AnswerFeedback
Corresponds to the JSON property answerFeedback
4922 4923 4924 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4922 def answer_feedback @answer_feedback end |
#create_time ⇒ String
Corresponds to the JSON property createTime
4927 4928 4929 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4927 def create_time @create_time end |
#missing_transition ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteractionMissingTransition
Corresponds to the JSON property missingTransition
4932 4933 4934 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4932 def missing_transition @missing_transition end |
#partial_responses ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentResponse>
Corresponds to the JSON property partialResponses
4937 4938 4939 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4937 def partial_responses @partial_responses end |
#request ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentRequest
Corresponds to the JSON property request
4942 4943 4944 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4942 def request @request end |
#request_utterances ⇒ String
Corresponds to the JSON property requestUtterances
4947 4948 4949 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4947 def request_utterances @request_utterances end |
#response ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DetectIntentResponse
Corresponds to the JSON property response
4952 4953 4954 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4952 def response @response end |
#response_utterances ⇒ String
Corresponds to the JSON property responseUtterances
4957 4958 4959 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4957 def response_utterances @response_utterances end |
#step_metrics ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationInteractionStepMetrics>
Corresponds to the JSON property stepMetrics
4962 4963 4964 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4962 def step_metrics @step_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 4969 def update!(**args) @answer_feedback = args[:answer_feedback] if args.key?(:answer_feedback) @create_time = args[:create_time] if args.key?(:create_time) @missing_transition = args[:missing_transition] if args.key?(:missing_transition) @partial_responses = args[:partial_responses] if args.key?(:partial_responses) @request = args[:request] if args.key?(:request) @request_utterances = args[:request_utterances] if args.key?(:request_utterances) @response = args[:response] if args.key?(:response) @response_utterances = args[:response_utterances] if args.key?(:response_utterances) @step_metrics = args[:step_metrics] if args.key?(:step_metrics) end |