Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerStep
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerStep
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Step information.
Instance Attribute Summary collapse
-
#actions ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerStepAction>
Actions.
-
#description ⇒ String
The description of the step.
-
#state ⇒ String
The state of the step.
-
#thought ⇒ String
The thought of the step.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1AnswerStep
constructor
A new instance of GoogleCloudDiscoveryengineV1AnswerStep.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1AnswerStep
Returns a new instance of GoogleCloudDiscoveryengineV1AnswerStep.
1906 1907 1908 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1906 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerStepAction>
Actions.
Corresponds to the JSON property actions
1889 1890 1891 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1889 def actions @actions end |
#description ⇒ String
The description of the step.
Corresponds to the JSON property description
1894 1895 1896 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1894 def description @description end |
#state ⇒ String
The state of the step.
Corresponds to the JSON property state
1899 1900 1901 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1899 def state @state end |
#thought ⇒ String
The thought of the step.
Corresponds to the JSON property thought
1904 1905 1906 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1904 def thought @thought end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1911 1912 1913 1914 1915 1916 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1911 def update!(**args) @actions = args[:actions] if args.key?(:actions) @description = args[:description] if args.key?(:description) @state = args[:state] if args.key?(:state) @thought = args[:thought] if args.key?(:thought) end |