Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RolloutState

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3RolloutState

Returns a new instance of GoogleCloudDialogflowCxV3RolloutState.



6988
6989
6990
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6988

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#start_timeString

Corresponds to the JSON property startTime

Returns:

  • (String)


6976
6977
6978
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6976

def start_time
  @start_time
end

#stepString

Corresponds to the JSON property step

Returns:

  • (String)


6981
6982
6983
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6981

def step
  @step
end

#step_indexFixnum

Corresponds to the JSON property stepIndex

Returns:

  • (Fixnum)


6986
6987
6988
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6986

def step_index
  @step_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6993
6994
6995
6996
6997
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 6993

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