Package com.microsoft.graph.models
Class BrowserSite
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.BrowserSite
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
The class for the Browser Site.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Allow Redirect.The Comment.The Compatibility Mode.The Created Date Time.The Deleted Date Time.The History.The Last Modified By.The Last Modified Date Time.The Merge Type.The Status.The Target Environment.The Web Url. -
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
-
allowRedirect
@SerializedName(value="allowRedirect", alternate="AllowRedirect") @Expose @Nullable public Boolean allowRedirectThe Allow Redirect. Controls the behavior of redirected sites. If true, indicates that the site will open in Internet Explorer 11 or Microsoft Edge even if the site is navigated to as part of a HTTP or meta refresh redirection chain. -
comment
The Comment. The comment for the site. -
compatibilityMode
@SerializedName(value="compatibilityMode", alternate="CompatibilityMode") @Expose @Nullable public BrowserSiteCompatibilityMode compatibilityModeThe Compatibility Mode. Controls what compatibility setting is used for specific sites or domains. The possible values are: default, internetExplorer8Enterprise, internetExplorer7Enterprise, internetExplorer11, internetExplorer10, internetExplorer9, internetExplorer8, internetExplorer7, internetExplorer5, unknownFutureValue. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The date and time when the site was created. -
deletedDateTime
@SerializedName(value="deletedDateTime", alternate="DeletedDateTime") @Expose @Nullable public OffsetDateTime deletedDateTimeThe Deleted Date Time. The date and time when the site was deleted. -
history
@SerializedName(value="history", alternate="History") @Expose @Nullable public List<BrowserSiteHistory> historyThe History. The history of modifications applied to the site. -
lastModifiedBy
@SerializedName(value="lastModifiedBy", alternate="LastModifiedBy") @Expose @Nullable public IdentitySet lastModifiedByThe Last Modified By. The user who last modified the site. -
lastModifiedDateTime
@SerializedName(value="lastModifiedDateTime", alternate="LastModifiedDateTime") @Expose @Nullable public OffsetDateTime lastModifiedDateTimeThe Last Modified Date Time. The date and time when the site was last modified. -
mergeType
@SerializedName(value="mergeType", alternate="MergeType") @Expose @Nullable public BrowserSiteMergeType mergeTypeThe Merge Type. The merge type of the site. The possible values are: noMerge, default, unknownFutureValue. -
status
@SerializedName(value="status", alternate="Status") @Expose @Nullable public BrowserSiteStatus statusThe Status. Indicates the status of the site. The possible values are: published, pendingAdd, pendingEdit, pendingDelete, unknownFutureValue. -
targetEnvironment
@SerializedName(value="targetEnvironment", alternate="TargetEnvironment") @Expose @Nullable public BrowserSiteTargetEnvironment targetEnvironmentThe Target Environment. The target environment that the site should open in. The possible values are: internetExplorerMode, internetExplorer11, microsoftEdge, configurable, none, unknownFutureValue.Prior to June 15, 2022, the internetExplorer11 option would allow opening a site in the Internet Explorer 11 (IE11) desktop application. Following the retirement of IE11 on June 15, 2022, the internetExplorer11 option will no longer open an IE11 window and will instead behave the same as the internetExplorerMode option. -
webUrl
The Web Url. The URL of the site.
-
-
Constructor Details
-
BrowserSite
public BrowserSite()
-
-
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
-