Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.3 KB

File metadata and controls

28 lines (21 loc) · 1.3 KB

LifetimeStatsBestTotalSteps

Properties

Name Type Description Notes
var_date date The date the user's best step count was achieved. [optional]
value int The user's best step count achieved. [optional]

Example

from fitbit_web_api.models.lifetime_stats_best_total_steps import LifetimeStatsBestTotalSteps

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

# convert the object into a dict
lifetime_stats_best_total_steps_dict = lifetime_stats_best_total_steps_instance.to_dict()
# create an instance of LifetimeStatsBestTotalSteps from a dict
lifetime_stats_best_total_steps_from_dict = LifetimeStatsBestTotalSteps.from_dict(lifetime_stats_best_total_steps_dict)

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