Class HostCookie
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.security.models.Artifact
com.microsoft.graph.security.models.HostCookie
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class HostCookie
extends Artifact
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Host Cookie.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Domain.The First Seen Date Time.The Host.The Last Seen Date Time.The Name. -
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
-
domain
The Domain. The URI for which the cookie is valid. -
firstSeenDateTime
@SerializedName(value="firstSeenDateTime", alternate="FirstSeenDateTime") @Expose @Nullable public OffsetDateTime firstSeenDateTimeThe First Seen Date Time. The first date and time when this hostCookie was observed by Microsoft Defender Threat Intelligence. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. -
lastSeenDateTime
@SerializedName(value="lastSeenDateTime", alternate="LastSeenDateTime") @Expose @Nullable public OffsetDateTime lastSeenDateTimeThe Last Seen Date Time. The most recent date and time when this hostCookie was observed by Microsoft Defender Threat Intelligence. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. -
name
The Name. The name of the cookie, for example, JSESSIONID or SEARCH_NAMESITE. -
host
The Host. Indicates that a cookie of this name and domain was found related to this host.
-
-
Constructor Details
-
HostCookie
public HostCookie()
-
-
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 classArtifact- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-