Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.3 KB

File metadata and controls

30 lines (22 loc) · 1.3 KB

LifetimeStatsLifetime

The user's lifetime stats.

Properties

Name Type Description Notes
total LifetimeStatsLifetimeTotal [optional]
tracker LifetimeStatsLifetimeTracker [optional]

Example

from fitbit_web_api.models.lifetime_stats_lifetime import LifetimeStatsLifetime

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

# convert the object into a dict
lifetime_stats_lifetime_dict = lifetime_stats_lifetime_instance.to_dict()
# create an instance of LifetimeStatsLifetime from a dict
lifetime_stats_lifetime_from_dict = LifetimeStatsLifetime.from_dict(lifetime_stats_lifetime_dict)

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