Package com.microsoft.graph.models
Class ContactFolder
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.ContactFolder
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ContactFolder
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Contact Folder.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Child Folders.The Contacts.The Display Name.The Multi Value Extended Properties.The Parent Folder Id.The Single Value Extended Properties. -
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. The folder's display name. -
parentFolderId
@SerializedName(value="parentFolderId", alternate="ParentFolderId") @Expose @Nullable public String parentFolderIdThe Parent Folder Id. The ID of the folder's parent folder. -
childFolders
@SerializedName(value="childFolders", alternate="ChildFolders") @Expose @Nullable public ContactFolderCollectionPage childFoldersThe Child Folders. The collection of child folders in the folder. Navigation property. Read-only. Nullable. -
contacts
@SerializedName(value="contacts", alternate="Contacts") @Expose @Nullable public ContactCollectionPage contactsThe Contacts. The contacts in the folder. Navigation property. Read-only. Nullable. -
multiValueExtendedProperties
@SerializedName(value="multiValueExtendedProperties", alternate="MultiValueExtendedProperties") @Expose @Nullable public MultiValueLegacyExtendedPropertyCollectionPage multiValueExtendedPropertiesThe Multi Value Extended Properties. The collection of multi-value extended properties defined for the contactFolder. Read-only. Nullable. -
singleValueExtendedProperties
@SerializedName(value="singleValueExtendedProperties", alternate="SingleValueExtendedProperties") @Expose @Nullable public SingleValueLegacyExtendedPropertyCollectionPage singleValueExtendedPropertiesThe Single Value Extended Properties. The collection of single-value extended properties defined for the contactFolder. Read-only. Nullable.
-
-
Constructor Details
-
ContactFolder
public ContactFolder()
-
-
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
-