Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.11 KB

File metadata and controls

27 lines (20 loc) · 1.11 KB

GetActivityGoalsResponse

Properties

Name Type Description Notes
goals ActivityGoals [optional]

Example

from fitbit_web_api.models.get_activity_goals_response import GetActivityGoalsResponse

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

# convert the object into a dict
get_activity_goals_response_dict = get_activity_goals_response_instance.to_dict()
# create an instance of GetActivityGoalsResponse from a dict
get_activity_goals_response_from_dict = GetActivityGoalsResponse.from_dict(get_activity_goals_response_dict)

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