Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.51 KB

File metadata and controls

31 lines (23 loc) · 1.51 KB

LifetimeStatsBestTracker

The user's best achievements including tracker data only.

Properties

Name Type Description Notes
distance LifetimeStatsBestTotalDistance [optional]
floors LifetimeStatsBestTotalFloors [optional]
steps LifetimeStatsBestTotalSteps [optional]

Example

from fitbit_web_api.models.lifetime_stats_best_tracker import LifetimeStatsBestTracker

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

# convert the object into a dict
lifetime_stats_best_tracker_dict = lifetime_stats_best_tracker_instance.to_dict()
# create an instance of LifetimeStatsBestTracker from a dict
lifetime_stats_best_tracker_from_dict = LifetimeStatsBestTracker.from_dict(lifetime_stats_best_tracker_dict)

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