Savepackageform Model
Overview
Manages saved forms for package configurations.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | A unique identifier for the saved package form. | ❌ |
| savePackageName | string | The name or label of the saved package. Displayed to users for selection or reuse. | ❌ |
| delete | number | A flag indicating whether the saved package is marked for deletion. | ❌ |
| application_id | string | The identifier of the application associated with the saved package. Helps in filtering or scoping saved packages. | ❌ |
| created_at | date | The date and time when the saved package form was created. Useful for tracking and sorting. | ❌ |
| modified_at | date | The date and time when the saved package form was last modified.Helps identify recently modified packages. | ❌ |
| user_id | string | The identifier of the user who saved the package form. | ❌ |
Sample JSON
{
"id": "example_value",
"savePackageName": "example_value",
"delete": "example_value",
"application_id": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"user_id": "example_value"
}