Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 906 Bytes

Status1.md

File metadata and controls

32 lines (23 loc) · 906 Bytes

Status1

Properties

Name Type Description Notes
id str [optional]
status str [optional]
status_display str [optional]
var_date str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]