Scheduled Presentation Entity (2022/06)
The scheduled presentation entity is structured as follows:
entity
:
Id
int read-only:Â A unique identifier for the scheduled presentation instancePresentationId
int read-write:Â The identifier for the scheduled presentation instancePresentationName
string read-write:Â The name of the scheduled presentation instanceIsRecurrent
bool read-write:Â A flag indicating whether the scheduled playback recurs every weekEventDate
Nullable<DateTime> read-write: Specifies the date when a non-recurrent presentation should begin playing. This value is null for recurring presentations. See DateTime for more information about this data type.StartTime
TimeSpan read-write: The time of day when playback begins. See TimeSpan for more information about this data type.Duration
TimeSpan read-write: The duration of the playback window. See TimeSpan for more information about this data type.RecurrenceStartDate
Nullable<DateTime> read-write: A timestamp indicating when recurring playback begins. If this value is null, then recurring playback begins immediately when scheduled. See DateTime for more information about this data type.RecurrenceEndDate
Nullable<DateTime> read-write: A timestamp indicating when recurring playback ends. If this value is null, then recurring playback will not end. See DateTime for more information about this data type.DaysOfWeek
DayOfWeek read-write: The days of the week during which the recurring schedule is active. See DayOfWeek for more information about this data type.CreationDate
DateTime read-only: A timestamp indicating when the ScheduledPresentation instance was created on BSN.cloud. See DateTime for more information about this data type.LastModifiedDate
DateTime read-only: A timestamp indicating when the ScheduledPresentation instance was last modified on BSN.cloud. See DateTime for more information about this data type.ExpirationDate
Nullable<DateTime> read-only: A timestamp indicating when the scheduled presentation instance will expire. If this value is null, then the instance will never expire. See DateTime for more information about this data type.InterruptScheduling
bool read-write:Â Whether or not the presentation can be interrupted. You can use this to schedule a presentation to interrupt a regular presentation at a specific time, but that interrupting presentation can not itself be interrupted.