Class: Temporalio::Client::Schedule::List::State

Inherits:
Object
  • Object
show all
Defined in:
lib/temporalio/client/schedule.rb

Overview

State of a listed schedule.

Instance Attribute Summary collapse

Instance Attribute Details

#noteString?



953
954
955
956
957
958
959
960
961
962
963
# File 'lib/temporalio/client/schedule.rb', line 953

class State
  # @!visibility private
  def initialize(raw_info:)
    # steep:ignore:start
    super(
      note: Internal::ProtoUtils.string_or(raw_info.notes),
      paused: raw_info.paused
    )
    # steep:ignore:end
  end
end

#pausedBoolean



953
954
955
956
957
958
959
960
961
962
963
# File 'lib/temporalio/client/schedule.rb', line 953

class State
  # @!visibility private
  def initialize(raw_info:)
    # steep:ignore:start
    super(
      note: Internal::ProtoUtils.string_or(raw_info.notes),
      paused: raw_info.paused
    )
    # steep:ignore:end
  end
end