RemoveUserResponse
Description
Represents a response of removing users from a group.
Constructors
| Constructor | Description |
|---|---|
| RemoveUserResponse() | Initializes a new instance of the RemoveUserResponse class. |
Properties
RemovedUsers IEnumerable<UserRemovedResponse>
Gets the collection of users that were successfully removed.
C#
public IEnumerable<UserRemovedResponse> RemovedUsers { get; }
FailedToRemoveUsers IEnumerable<UserAddRemoveFailedResponse>
Gets the collection of users that could not be removed, along with failure details.
C#
public IEnumerable<UserAddRemoveFailedResponse> FailedToRemoveUsers { get; }