class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutState
State of the auto-rollout process.
Attributes
start_time[RW]
Start time of the current step. Corresponds to the JSON property `startTime` @return [String]
step[RW]
Display name of the current auto rollout step. Corresponds to the JSON property `step` @return [String]
step_index[RW]
Index of the current step in the auto rollout steps list. Corresponds to the JSON property `stepIndex` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 4190 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 4195 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