SoapHolidayShift data structure

Element

Description

Type

Occurrences

durationHours

Hours part of duration

integer

1

durationMinutes

Minutes part of duration

integer

1

endDate

Shift end date in DD/MM/YYYY format

string

1

noEndDate

Indicates whether the No End Date is selected

Boolean

1

startDate

Shift start date in DD/MM/YYYY format

string

1

startTime

Shift start time in the format hh:mm

string

1

Specification:

<xs:complexType name="SoapHolidayShift">

  <xs:sequence>

    <xs:element name="durationHours" type="xs:int"/>

    <xs:element name="durationMinutes" type="xs:int"/>

    <xs:element name="endDate" nillable="true" type="xs:string"/>

    <xs:element name="noEndDate" type="xs:boolean"/>

    <xs:element name="startDate" nillable="true" type="xs:string"/>

    <xs:element name="startTime" nillable="true" type="xs:string"/>

  </xs:sequence>

</xs:complexType>

Example