Class CreateUserResponse
Represents the response from creating a new user.
Implements
Inherited Members
Namespace: PAccess.PartnerAgents.Api.Contracts.Users
Assembly: PAccess.PartnerAgents.Api.Contracts.dll
Syntax
public class CreateUserResponse : IApiResponse
Properties
View SourceErrorResponse
Gets or sets the error response (if any).
Declaration
public ErrorResponse? ErrorResponse { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorResponse |
IsSuccess
Gets or sets the success status of the operation.
Declaration
public bool IsSuccess { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
UserDetails
Gets or sets the details of the created user.
Declaration
public UserDetails? UserDetails { get; set; }
Property Value
| Type | Description |
|---|---|
| UserDetails |