Package com.microsoft.graph.models
Class BrowserSharedCookie
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.BrowserSharedCookie
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class BrowserSharedCookie
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Browser Shared Cookie.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Comment.The Created Date Time.The Deleted Date Time.The Display Name.The History.The Host Only.The Host Or Domain.The Last Modified By.The Last Modified Date Time.The Path.The Source Environment.The Status. -
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.Entity
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
-
comment
The Comment. The comment for the shared cookie. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The date and time when the shared cookie was created. -
deletedDateTime
@SerializedName(value="deletedDateTime", alternate="DeletedDateTime") @Expose @Nullable public OffsetDateTime deletedDateTimeThe Deleted Date Time. The date and time when the shared cookie was deleted. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of the cookie. -
history
@SerializedName(value="history", alternate="History") @Expose @Nullable public List<BrowserSharedCookieHistory> historyThe History. The history of modifications applied to the cookie. -
hostOnly
The Host Only. Controls whether a cookie is a host-only or domain cookie. -
hostOrDomain
@SerializedName(value="hostOrDomain", alternate="HostOrDomain") @Expose @Nullable public String hostOrDomainThe Host Or Domain. The URL of the cookie. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public IdentitySet lastModifiedByThe Last Modified By. The user who last modified the cookie. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time when the cookie was last modified. -
path
The Path. The path of the cookie. -
sourceEnvironment
@SerializedName(value="sourceEnvironment", alternate="SourceEnvironment") @Expose @Nullable public BrowserSharedCookieSourceEnvironment sourceEnvironmentThe Source Environment. Specifies how the cookies are shared between Microsoft Edge and Internet Explorer. The possible values are: microsoftEdge, internetExplorer11, both, unknownFutureValue. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public BrowserSharedCookieStatus statusThe Status. The status of the cookie. The possible values are: published, pendingAdd, pendingEdit, pendingDelete, unknownFutureValue.
-
-
Constructor Details
-
BrowserSharedCookie
public BrowserSharedCookie()
-
-
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 classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-