Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ToolCallResult
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ToolCallResult
- 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
-
#action ⇒ String
Corresponds to the JSON property
action. -
#answer_record ⇒ String
Corresponds to the JSON property
answerRecord. -
#content ⇒ String
Corresponds to the JSON property
content. -
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#error ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ToolCallResultError
Corresponds to the JSON property
error. -
#raw_content ⇒ String
Corresponds to the JSON property
rawContentNOTE: Values are automatically base64 encoded/decoded in the client library. -
#tool ⇒ String
Corresponds to the JSON property
tool.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolCallResult
constructor
A new instance of GoogleCloudDialogflowV2ToolCallResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ToolCallResult
Returns a new instance of GoogleCloudDialogflowV2ToolCallResult.
10528 10529 10530 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10528 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Corresponds to the JSON property action
10495 10496 10497 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10495 def action @action end |
#answer_record ⇒ String
Corresponds to the JSON property answerRecord
10500 10501 10502 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10500 def answer_record @answer_record end |
#content ⇒ String
Corresponds to the JSON property content
10505 10506 10507 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10505 def content @content end |
#create_time ⇒ String
Corresponds to the JSON property createTime
10510 10511 10512 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10510 def create_time @create_time end |
#error ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2ToolCallResultError
Corresponds to the JSON property error
10515 10516 10517 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10515 def error @error end |
#raw_content ⇒ String
Corresponds to the JSON property rawContent
NOTE: Values are automatically base64 encoded/decoded in the client library.
10521 10522 10523 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10521 def raw_content @raw_content end |
#tool ⇒ String
Corresponds to the JSON property tool
10526 10527 10528 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10526 def tool @tool end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10533 10534 10535 10536 10537 10538 10539 10540 10541 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10533 def update!(**args) @action = args[:action] if args.key?(:action) @answer_record = args[:answer_record] if args.key?(:answer_record) @content = args[:content] if args.key?(:content) @create_time = args[:create_time] if args.key?(:create_time) @error = args[:error] if args.key?(:error) @raw_content = args[:raw_content] if args.key?(:raw_content) @tool = args[:tool] if args.key?(:tool) end |