RolesDto Data Type

The Class RolesDto.

Implemented Interfaces
Serializable
Properties
name data type description
paging PagingAndFiltering The paging.
role array of RoleDto The roles.
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
  },
  "role" : [ {
    "name" : "...",
    "description" : "...",
    "role" : [ { }, { } ],
    "accessibleEntity" : [ {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "UPDATE",
      "disabled" : true
    }, {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "DELETE",
      "disabled" : true
    } ],
    "uuid" : "...",
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  }, {
    "name" : "...",
    "description" : "...",
    "role" : [ { }, { } ],
    "accessibleEntity" : [ {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "DELETE",
      "disabled" : true
    }, {
      "entityId" : 12345,
      "code" : "...",
      "entityClass" : "...",
      "permission" : "DELETE",
      "disabled" : true
    } ],
    "uuid" : "...",
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  } ],
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}