class Schedule

Overview

The Schedule class represents the schedule for an event. It includes properties for the schedule's interval and timezone.

Included Modules

Defined in:

runway/models/config.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(ctx : YAML::ParseContext, node : YAML::Nodes::Node) #

[View source]

Instance Method Detail

def interval : String #

@return [String] The interval for the schedule.


[View source]
def interval=(interval : String) #

@return [String] The interval for the schedule.


[View source]
def timezone : String | Nil #

@return [String, nil] The timezone for the schedule, or nil if not specified.


[View source]
def timezone=(timezone : String | Nil) #

@return [String, nil] The timezone for the schedule, or nil if not specified.


[View source]