Package com.microsoft.graph.models
Class GroupSetting
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.GroupSetting
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class GroupSetting
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Group Setting.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Display Name.The Template Id.The Values. -
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
-
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. Display name of this group of settings, which comes from the associated template. -
templateId
@SerializedName(value="templateId", alternate="TemplateId") @Expose @Nullable public String templateIdThe Template Id. Unique identifier for the tenant-level groupSettingTemplates object that's been customized for this group-level settings object. Read-only. -
values
@SerializedName(value="values", alternate="Values") @Expose @Nullable public List<SettingValue> valuesThe Values. Collection of name-value pairs corresponding to the name and defaultValue properties in the referenced groupSettingTemplates object.
-
-
Constructor Details
-
GroupSetting
public GroupSetting()
-
-
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
-