3.1.4.1.3.19 t:SerializableTimeZone Complex Type

The SerializableTimeZone complex type contains elements that identify time zone information. This element also contains information about the transition between standard time and daylight saving time. The TimeZone element in the GetUserAvailabilityRequest WSDL message represents the time zone in which the DateTime values in the request are specified. The DateTime values that are returned by this protocol are also in this time zone. The exception is that working hours in a response are returned in the time zone of the attendee.

 <xs:complexType name="SerializableTimeZone">
   <xs:sequence>
     <xs:element name="Bias"
       type="xs:int"
       maxOccurs="1"
       minOccurs="1"
      />
     <xs:element name="StandardTime"
       type="t:SerializableTimeZoneTime"
       maxOccurs="1"
       minOccurs="1"
      />
     <xs:element name="DaylightTime"
       type="t:SerializableTimeZoneTime"
       maxOccurs="1"
       minOccurs="1"
      />
   </xs:sequence>
 </xs:complexType>
  

The following table lists the child elements of the SerializableTimeZone complex type.

Element name

Type

Description

Bias

xs:int [XMLSCHEMA2]

Represents the offset from UTC for standard and daylight saving time. This value is in minutes. Values can range from -1440 to 1440.

MUST be present, and can occur only once.

StandardTime

t:SerializableTimeZoneTime (section 3.1.4.1.3.20)

Represents an offset from the time relative to UTC that is represented by the Bias element. This element also contains information about the transition to standard time from daylight saving time in countries/regions where daylight saving time is observed.

MUST be present.

DaylightTime

t:SerializableTimeZoneTime (section 3.1.4.1.3.20)

Represents an offset from the time relative to UTC that is represented by the Bias element in countries/regions where daylight saving time is observed. This element also contains information about when the transition to daylight saving time from standard time occurs.

MUST be present.