UsersDto Data Type

The Class UsersDto.

Implemented Interfaces
Serializable
Properties
name data type description
paging PagingAndFiltering The paging.
user array of UserDto The users.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "DESCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "user" : [ {
    "auditableField" : [ {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    }, {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    } ],
    "username" : "...",
    "password" : "...",
    "email" : "...",
    "firstName" : "...",
    "lastName" : "...",
    "userRole" : [ "...", "..." ],
    "accessibleEntity" : [ {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "DELETE",
      "disabled" : true
    }, {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "READ",
      "disabled" : true
    } ],
    "userLevel" : "...",
    "createdAt" : 12345,
    "lastLoginDate" : 12345,
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  }, {
    "auditableField" : [ {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    }, {
      "entityClass" : "...",
      "fieldName" : "...",
      "id" : 12345,
      "changeOrigin" : "...",
      "auditableField" : [ { }, { } ],
      "originName" : "...",
      "code" : "...",
      "previousState" : "...",
      "currentState" : "...",
      "description" : "...",
      "created" : "...",
      "updatedCode" : "...",
      "actor" : "..."
    } ],
    "username" : "...",
    "password" : "...",
    "email" : "...",
    "firstName" : "...",
    "lastName" : "...",
    "userRole" : [ "...", "..." ],
    "accessibleEntity" : [ {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "DELETE",
      "disabled" : true
    }, {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "UPDATE",
      "disabled" : true
    } ],
    "userLevel" : "...",
    "createdAt" : 12345,
    "lastLoginDate" : 12345,
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  } ],
  "actionStatus" : {
    "status" : "FAIL",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}