ModuleDto
DTO for module data.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | URL-friendly identifier for the module |
URL-friendly identifier for the module | ||
| name | string | Display name of the module |
Display name of the module | ||
| description | string | Detailed description of the module and its features |
Detailed description of the module and its features | ||
| permissibleEntityCount | integer | Number of permissible entities in this module |
Number of permissible entities in this module | ||
| packageCount | integer | Number of packages that contain this module |
Number of packages that contain this module | ||
| permissibleEntities | array of enum | Permissible entities that this module provides access to |
Permissible entities that this module provides access to | ||
| packages | array of CodeAndNameDto | Packages that contain this module |
Packages that contain this module | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"permissibleEntityCount": 0,
"packageCount": 0
}