class Temporalio::Client::Schedule::List::State

@return [Boolean] Whether the schedule is paused.
@!attribute paused
certain conditions like pause-on-failure.
@return [String, nil] Human readable message for the schedule. The system may overwrite this value on
@!attribute note
State of a listed schedule.

def initialize(raw_info:)

@!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