Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
status | str | [optional] | |
status_display | str | [optional] | |
var_date | str | [optional] |
from pp_sdk.models.status1 import Status1
# TODO update the JSON string below
json = "{}"
# create an instance of Status1 from a JSON string
status1_instance = Status1.from_json(json)
# print the JSON string representation of the object
print(Status1.to_json())
# convert the object into a dict
status1_dict = status1_instance.to_dict()
# create an instance of Status1 from a dict
status1_from_dict = Status1.from_dict(status1_dict)