Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This structure represents the date and time off minutes associated with a resource's scheduled time off.

Format


Panel
titlePwsScheduleTimeOffDate
  • PwsScheduleTimeOffDate
    • Date: DateTime
    • TimeOffMinutes: Int32

Elements


Element

Data Type

Description

Sample Data

Date

DateTime

The date

and time

(in midnight UTC format) associated with the resource's scheduled time off.

2018-03-30T00:00:00Z

TimeOffMinutes

Int32

The time off minutes

associated with the resource's scheduled time off 

on the specified date.

1440

Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
                    <a:TimeOffDates>
                        <a:PwsScheduleTimeOffDate>
                           <a:Date>2018-03-30T00:00:00Z</a:Date>
                           <a:TimeOffMinutes>1440</a:TimeOffMinutes>
                        </a:PwsScheduleTimeOffDate>
                        <a:PwsScheduleTimeOffDate>
                           <a:Date>2018-03-31T00:00:00Z</a:Date>
                           <a:TimeOffMinutes>1440</a:TimeOffMinutes>
                        </a:PwsScheduleTimeOffDate>
                     </a:TimeOffDates>

...