The scheduled presentation entity is structured as follows:
entity
:
Id int:
A unique identifier for the scheduled presentation instance
PresentationId
The identifier for the scheduled presentation instanceint
:
PresentationName string:
The name of the scheduled presentation instance
IsRecurrent bool:
A flag indicating whether the scheduled playback recurs every week
EventDate
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.
: DateTime?
StartTime
The time of day when playback begins. See TimeSpan for more information about this data type.
: TimeSpan
Duration
The duration of the playback window. See TimeSpan for more information about this data type.
: TimeSpan
RecurrenceStartDate
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.
: Nullable<
DateTime>
RecurrenceEndDate
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.
: Nullable<
DateTime>
DaysOfWeek
The days of the week during which the recurring schedule is active. See DayOfWeek for more information about this data type.DayOfWeek
:
CreationDate
A timestamp indicating when the ScheduledPresentation instance was created on BSN.cloud. See DateTime for more information about this data type.
: DateTime
LastModifiedDate
A timestamp indicating when the ScheduledPresentation instance was last modified on BSN.cloud. See DateTime for more information about this data type.DateTime
:
ExpirationDate
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.
: Nullable<
DateTime>
InterruptScheduling
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.bool
: