Package com.microsoft.graph.models
Class AttributeSet
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AttributeSet
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AttributeSet
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Attribute Set.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Description.The Max Attributes Per Set. -
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. Description of the attribute set. Can be up to 128 characters long and include Unicode characters. Can be changed later. -
maxAttributesPerSet
@SerializedName(value="maxAttributesPerSet", alternate="MaxAttributesPerSet") @Expose @Nullable public Integer maxAttributesPerSetThe Max Attributes Per Set. Maximum number of custom security attributes that can be defined in this attribute set. Default value is null. If not specified, the administrator can add up to the maximum of 500 active attributes per tenant. Can be changed later.
-
-
Constructor Details
-
AttributeSet
public AttributeSet()
-
-
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
-