GetCurrentUserResponse Data Type

The Class GetCurrentUserResponse.

Implemented Interfaces
Serializable
Properties
name data type description
user CurrentUserDto The user.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "user" : {
    "username" : "...",
    "email" : "...",
    "fullName" : "...",
    "role" : {
      "property1" : [ "...", "..." ],
      "property2" : [ "...", "..." ]
    }
  },
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}