Package com.microsoft.graph.models
Class OrganizationalBrandingProperties
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.OrganizationalBrandingProperties
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
OrganizationalBranding
,OrganizationalBrandingLocalization
public class OrganizationalBrandingProperties
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Organizational Branding Properties.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Background Color.The Background Image Relative Url.The Banner Logo Relative Url.The Cdn List.The Sign In Page Text.The Square Logo Relative Url.The Username Hint Text. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
backgroundColor
@SerializedName(value="backgroundColor", alternate="BackgroundColor") @Expose @Nullable public String backgroundColorThe Background Color. Color that appears in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. -
backgroundImageRelativeUrl
@SerializedName(value="backgroundImageRelativeUrl", alternate="BackgroundImageRelativeUrl") @Expose @Nullable public String backgroundImageRelativeUrlThe Background Image Relative Url. A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. -
bannerLogoRelativeUrl
@SerializedName(value="bannerLogoRelativeUrl", alternate="BannerLogoRelativeUrl") @Expose @Nullable public String bannerLogoRelativeUrlThe Banner Logo Relative Url. A relative URL for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. -
cdnList
The Cdn List. A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. -
signInPageText
@SerializedName(value="signInPageText", alternate="SignInPageText") @Expose @Nullable public String signInPageTextThe Sign In Page Text. Text that appears at the bottom of the sign-in box. Use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be in Unicode format and not exceed 1024 characters. -
squareLogoRelativeUrl
@SerializedName(value="squareLogoRelativeUrl", alternate="SquareLogoRelativeUrl") @Expose @Nullable public String squareLogoRelativeUrlThe Square Logo Relative Url. A relative URL for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. -
usernameHintText
@SerializedName(value="usernameHintText", alternate="UsernameHintText") @Expose @Nullable public String usernameHintTextThe Username Hint Text. A string that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters.
-
-
Constructor Details
-
OrganizationalBrandingProperties
public OrganizationalBrandingProperties()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-