Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.03 KB

File metadata and controls

27 lines (20 loc) · 1.03 KB

GetAlarmsResponse

Properties

Name Type Description Notes
tracker_alarms List[Alarm] List of alarms. [optional]

Example

from fitbit_web_api.models.get_alarms_response import GetAlarmsResponse

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

# convert the object into a dict
get_alarms_response_dict = get_alarms_response_instance.to_dict()
# create an instance of GetAlarmsResponse from a dict
get_alarms_response_from_dict = GetAlarmsResponse.from_dict(get_alarms_response_dict)

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