Package com.microsoft.graph.models
Class CustomTimeZone
java.lang.Object
com.microsoft.graph.models.TimeZoneBase
com.microsoft.graph.models.CustomTimeZone
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class CustomTimeZone
extends TimeZoneBase
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Custom Time Zone.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Bias.The Daylight Offset.The Standard Offset.Fields inherited from class com.microsoft.graph.models.TimeZoneBase
name, oDataType -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.TimeZoneBase
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
bias
The Bias. 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
@SerializedName(value="daylightOffset", alternate="DaylightOffset") @Expose @Nullable public DaylightTimeZoneOffset daylightOffsetThe Daylight Offset. Specifies when the time zone switches from standard time to daylight saving time. -
standardOffset
@SerializedName(value="standardOffset", alternate="StandardOffset") @Expose @Nullable public StandardTimeZoneOffset standardOffsetThe Standard Offset. Specifies when the time zone switches from daylight saving time to standard time.
-
-
Constructor Details
-
CustomTimeZone
public CustomTimeZone()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classTimeZoneBase- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-