| Name | Type | Description | Notes |
|---|---|---|---|
| goals | FoodGoals | [optional] |
from fitbit_web_api.models.get_food_goals_response import GetFoodGoalsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetFoodGoalsResponse from a JSON string
get_food_goals_response_instance = GetFoodGoalsResponse.from_json(json)
# print the JSON string representation of the object
print(GetFoodGoalsResponse.to_json())
# convert the object into a dict
get_food_goals_response_dict = get_food_goals_response_instance.to_dict()
# create an instance of GetFoodGoalsResponse from a dict
get_food_goals_response_from_dict = GetFoodGoalsResponse.from_dict(get_food_goals_response_dict)