Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.37 KB

File metadata and controls

28 lines (21 loc) · 1.37 KB

GetEcgLogListResponse

Properties

Name Type Description Notes
ecg_readings List[EcgReading] List of ECG readings. [optional]
pagination GetEcgLogListResponsePagination [optional]

Example

from fitbit_web_api.models.get_ecg_log_list_response import GetEcgLogListResponse

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

# convert the object into a dict
get_ecg_log_list_response_dict = get_ecg_log_list_response_instance.to_dict()
# create an instance of GetEcgLogListResponse from a dict
get_ecg_log_list_response_from_dict = GetEcgLogListResponse.from_dict(get_ecg_log_list_response_dict)

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