PackageDto
Response DTO for package information
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this package |
The unique code for this package | ||
| name | string | Display name of the package |
Display name of the package | ||
| description | string | Detailed description of the package and its features |
Detailed description of the package and its features | ||
| isArchived | boolean | When true, prevents new tenants from being assigned to this package |
When true, prevents new tenants from being assigned to this package | ||
| moduleCount | integer | Number of modules included in this package |
Number of modules included in this package | ||
| tenantCount | integer | Number of tenants assigned to this package |
Number of tenants assigned to this package | ||
| modules | array of CodeAndNameDto | Collection of modules included in this package |
Collection of modules included in this package | ||
| createdDate | string | When the package was created |
When the package was created | ||
| updatedDate | string | When the package was last updated |
When the package was last updated | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"isArchived": false,
"moduleCount": 0
}