Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 840 Bytes

DateRange.md

File metadata and controls

30 lines (21 loc) · 840 Bytes

DateRange

Properties

Name Type Description Notes
var_from datetime
to datetime

Example

from abdm.models.date_range import DateRange

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

# convert the object into a dict
date_range_dict = date_range_instance.to_dict()
# create an instance of DateRange from a dict
date_range_from_dict = DateRange.from_dict(date_range_dict)

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