| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| deleted |
bool |
|
[optional] |
| name |
str |
|
|
| description |
str |
|
[optional] |
| price |
str |
|
[optional] |
| is_active |
bool |
|
[optional] |
| created_at |
str |
|
[optional] |
| modified_at |
str |
|
[optional] |
| created_by_id |
str |
|
[optional] |
| created_by_name |
str |
|
[optional] |
| modified_by_id |
str |
|
[optional] |
| modified_by_name |
str |
|
[optional] |
| products_ids |
List[str] |
|
[optional] |
| products_names |
object |
|
[optional] |
| owner_user_id |
str |
|
[optional] |
| owner_user_name |
str |
|
[optional] |
| assigned_user_id |
str |
|
[optional] |
| assigned_user_name |
str |
|
[optional] |
| teams_ids |
List[str] |
|
[optional] |
| teams_names |
object |
|
[optional] |
from clientapi_atrocore.models.packaging import Packaging
# TODO update the JSON string below
json = "{}"
# create an instance of Packaging from a JSON string
packaging_instance = Packaging.from_json(json)
# print the JSON string representation of the object
print Packaging.to_json()
# convert the object into a dict
packaging_dict = packaging_instance.to_dict()
# create an instance of Packaging from a dict
packaging_form_dict = packaging.from_dict(packaging_dict)
[Back to Model list] [Back to API list] [Back to README]