UserHierarchyLevelDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
code string
description string
parentLevel string
userHierarchyLevel array of UserHierarchyLevelDto
orderLevel number

Example

{
  "code" : "...",
  "description" : "...",
  "parentLevel" : "...",
  "userHierarchyLevel" : [ {
    "code" : "...",
    "description" : "...",
    "parentLevel" : "...",
    "userHierarchyLevel" : [ { }, { } ],
    "orderLevel" : 12345
  }, {
    "code" : "...",
    "description" : "...",
    "parentLevel" : "...",
    "userHierarchyLevel" : [ { }, { } ],
    "orderLevel" : 12345
  } ],
  "orderLevel" : 12345
}