Interface O365PurgeUserResponse
- All Known Implementing Classes:
ImmutableO365PurgeUserResponse
public interface O365PurgeUserResponse
O365 Purge User response (purge status at the user level).
- Author:
- Sachin Mittal
-
Method Summary
Modifier and TypeMethodDescriptionbooleanactive()Whether this user / mailbox will be purged at all (cancel use case).Specifies the purge completed date time.errorMsg()The error message if any on this purge request (would come from monocle)Get the purge initiated date associated with this mailbox.mailbox()The mailbox (email) that is marked for purging.Get the org platform uuid associated with this mailbox.Get the purge date associated with this mailbox.The status of this purge user request - Completed, Running, Cancelled or FailedThe admin user who requested purging of this user.The user native uuid for the mailbox that was marked for purging.
-
Method Details
-
userNativeUuid
String userNativeUuid()The user native uuid for the mailbox that was marked for purging. -
mailbox
String mailbox()The mailbox (email) that is marked for purging. -
organizationUuid
String organizationUuid()Get the org platform uuid associated with this mailbox. -
initiatedDate
Instant initiatedDate()Get the purge initiated date associated with this mailbox. -
purgeDate
Instant purgeDate()Get the purge date associated with this mailbox. -
active
boolean active()Whether this user / mailbox will be purged at all (cancel use case). -
purgeStatus
String purgeStatus()The status of this purge user request - Completed, Running, Cancelled or Failed -
errorMsg
The error message if any on this purge request (would come from monocle) -
requestedBy
The admin user who requested purging of this user. -
completedDate
Specifies the purge completed date time.
-