Package com.independentsoft.graph.files
Class IdentitySet
java.lang.Object
com.independentsoft.graph.files.IdentitySet
Represents a set of identities associated with an action, event, or resource in Microsoft Graph.
An IdentitySet groups together the different actors – such as the application, device, or
user – that are involved in an action. Each Identity is optional and present only
when applicable. For example, the created-by information of a drive item is returned as an
IdentitySet so that both the user and the application that created it can be inspected.
Example usage:
IdentitySet createdBy = driveItem.getCreatedBy();
if (createdBy != null && createdBy.getUser() != null)
{
System.out.println(createdBy.getUser().getDisplayName());
}
- Since:
- 1.0
- See Also:
- identitySet resource type,
Identity
-
Constructor Details
-
IdentitySet
public IdentitySet() -
IdentitySet
-
-
Method Details
-
getApplication
-
getApplicationInstance
-
getConversation
-
getConversationIdentityType
-
getDevice
-
getEncrypted
-
getGuest
-
getPhone
-
getUser
-