CreatePackageRequest
Request DTO for creating a new package.
Properties
| Name | Type | Description |
|---|---|---|
| code* | string | URL-friendly identifier for the package |
URL-friendly identifier for the 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 | ||
| moduleIds | array of integer | IDs of modules to include in this package |
IDs of modules to include in this package | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"moduleIds": [
0
]
}