Skip to main content

Savepackageform Model

Overview

Manages saved forms for package configurations.

Fields

FieldTypeDescriptionRequired
idstringA unique identifier for the saved package form.
savePackageNamestringThe name or label of the saved package. Displayed to users for selection or reuse.
deletenumberA flag indicating whether the saved package is marked for deletion.
application_idstringThe identifier of the application associated with the saved package. Helps in filtering or scoping saved packages.
created_atdateThe date and time when the saved package form was created. Useful for tracking and sorting.
modified_atdateThe date and time when the saved package form was last modified.Helps identify recently modified packages.
user_idstringThe 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"
}