Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.04 KB

File metadata and controls

34 lines (28 loc) · 1.04 KB

Late::QueueSchedule

Properties

Name Type Description Notes
_id String Unique queue identifier [optional]
profile_id String Profile ID this queue belongs to [optional]
name String Queue name (e.g., "Morning Posts", "Evening Content") [optional]
timezone String IANA timezone (e.g., America/New_York) [optional]
slots Array<QueueSlot> [optional]
active Boolean Whether the queue is active [optional]
is_default Boolean Whether this is the default queue for the profile (used when no queueId specified) [optional]
created_at Time [optional]
updated_at Time [optional]

Example

require 'late-sdk'

instance = Late::QueueSchedule.new(
  _id: null,
  profile_id: null,
  name: null,
  timezone: null,
  slots: null,
  active: null,
  is_default: null,
  created_at: null,
  updated_at: null
)