customTimeZone resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents a time zone where the transition from standard to daylight saving time, or vice versa is not standard.
Properties
Property | Type | Description |
---|---|---|
bias | Edm.Int32 | The time offset of the time zone from Coordinated Universal Time (UTC). This value is in minutes. Time zones that are ahead of UTC have a positive offset; time zones that are behind UTC have a negative offset. |
daylightOffset | daylightTimeZoneOffset | Specifies when the time zone switches from standard time to daylight saving time. |
name | string | The name of the custom time zone. |
standardOffset | standardTimeZoneOffset | Specifies when the time zone switches from daylight saving time to standard time. |
JSON representation
The following JSON representation shows the resource type.
{
"bias": "Int32",
"daylightOffset": {"@odata.type": "microsoft.graph.daylightTimeZoneOffset"},
"name": "string",
"standardOffset": {"@odata.type": "microsoft.graph.standardTimeZoneOffset"}
}