UserAddRemoveFailedResponse
Description
Represents the details of a failed attempt to add or remove a user from a group.
Constructors
| Constructor | Description |
|---|---|
| UserAddRemoveFailedResponse() | Initializes a new instance of the UserAddRemoveFailedResponse class, representing a failed add or remove operation. |
Properties
UserId Int32
Gets the unique identifier of the user for whom the add or remove operation failed.
C#
public int? UserId { get; }
UserName String
Gets the username of the user for whom the add or remove operation failed.
C#
public string UserName { get; }
Reason String
Provides a message describing the reason why the user could not be added to or removed from the group.
C#
public string Reason { get; }