Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerRecord
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerRecord
- 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
-
#agent_assistant_record ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantRecord
Corresponds to the JSON property
agentAssistantRecord. -
#answer_feedback ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerFeedback
Corresponds to the JSON property
answerFeedback. -
#name ⇒ String
Corresponds to the JSON property
name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AnswerRecord
constructor
A new instance of GoogleCloudDialogflowV2beta1AnswerRecord.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AnswerRecord
Returns a new instance of GoogleCloudDialogflowV2beta1AnswerRecord.
11546 11547 11548 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11546 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_assistant_record ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantRecord
Corresponds to the JSON property agentAssistantRecord
11534 11535 11536 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11534 def agent_assistant_record @agent_assistant_record end |
#answer_feedback ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerFeedback
Corresponds to the JSON property answerFeedback
11539 11540 11541 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11539 def answer_feedback @answer_feedback end |
#name ⇒ String
Corresponds to the JSON property name
11544 11545 11546 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11544 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11551 11552 11553 11554 11555 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11551 def update!(**args) @agent_assistant_record = args[:agent_assistant_record] if args.key?(:agent_assistant_record) @answer_feedback = args[:answer_feedback] if args.key?(:answer_feedback) @name = args[:name] if args.key?(:name) end |