Package com.microsoft.graph.models
Class BrowserSiteList
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.BrowserSiteList
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class BrowserSiteList
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Browser Site List.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Description.The Display Name.The Last Modified By.The Last Modified Date Time.The Published By.The Published Date Time.The Revision.The Shared Cookies.The Sites.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
-
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. The description of the site list. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The name of the site list. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public IdentitySet lastModifiedByThe Last Modified By. The user who last modified the site list. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time when the site list was last modified. -
publishedBy
@SerializedName(value="publishedBy", alternate="PublishedBy") @Expose @Nullable public IdentitySet publishedByThe Published By. The user who published the site list. -
publishedDateTime
@SerializedName(value="publishedDateTime", alternate="PublishedDateTime") @Expose @Nullable public OffsetDateTime publishedDateTimeThe Published Date Time. The date and time when the site list was published. -
revision
The Revision. The current revision of the site list. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public BrowserSiteListStatus statusThe Status. The current status of the site list. The possible values are: draft, published, pending, unknownFutureValue. -
sites
@SerializedName(value="sites", alternate="Sites") @Expose @Nullable public BrowserSiteCollectionPage sitesThe Sites. A collection of sites defined for the site list.
-
-
Constructor Details
-
BrowserSiteList
public BrowserSiteList()
-
-
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
-