Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 932 Bytes

CycleDiscontinued.md

File metadata and controls

29 lines (20 loc) · 932 Bytes

CycleDiscontinued

Whether this cycle is now discontinued.

Properties

Name Type Description Notes

Example

from endoflifedate.models.cycle_discontinued import CycleDiscontinued

# TODO update the JSON string below
json = "{}"
# create an instance of CycleDiscontinued from a JSON string
cycle_discontinued_instance = CycleDiscontinued.from_json(json)
# print the JSON string representation of the object
print(CycleDiscontinued.to_json())

# convert the object into a dict
cycle_discontinued_dict = cycle_discontinued_instance.to_dict()
# create an instance of CycleDiscontinued from a dict
cycle_discontinued_form_dict = cycle_discontinued.from_dict(cycle_discontinued_dict)

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