Module: Zoom::Constants::Recurrence

Defined in:
lib/zoom/constants/recurrence/types.rb,
lib/zoom/constants/recurrence/weekly_days.rb,
lib/zoom/constants/recurrence/monthly_weeks.rb

Constant Summary collapse

TYPES =
{
  1 => 'Daily',
  2 => 'Weekly',
  3 => 'Monthly'
}.freeze
WEEKLY_DAYS =
{
  1 => 'Sunday',
  2 => 'Monday',
  3 => 'Tuesday',
  4 => 'Wednesday',
  5 => 'Thursday',
  6 => 'Friday',
  7 => 'Saturday'
}.freeze
MONTHLY_WEEKS =
{
  -1 => 'Last week',
  1 => 'First week',
  2 => 'Second week',
  3 => 'Third week',
  4 => 'Fourth week'
}.freeze