Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1RolloutState
- 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
-
#start_time ⇒ String
Corresponds to the JSON property
startTime. -
#step ⇒ String
Corresponds to the JSON property
step. -
#step_index ⇒ Fixnum
Corresponds to the JSON property
stepIndex.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1RolloutState
constructor
A new instance of GoogleCloudDialogflowCxV3beta1RolloutState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1RolloutState
Returns a new instance of GoogleCloudDialogflowCxV3beta1RolloutState.
11455 11456 11457 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11455 def initialize(**args) update!(**args) end |
Instance Attribute Details
#start_time ⇒ String
Corresponds to the JSON property startTime
11443 11444 11445 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11443 def start_time @start_time end |
#step ⇒ String
Corresponds to the JSON property step
11448 11449 11450 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11448 def step @step end |
#step_index ⇒ Fixnum
Corresponds to the JSON property stepIndex
11453 11454 11455 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11453 def step_index @step_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11460 11461 11462 11463 11464 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11460 def update!(**args) @start_time = args[:start_time] if args.key?(:start_time) @step = args[:step] if args.key?(:step) @step_index = args[:step_index] if args.key?(:step_index) end |