Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.05 KB

File metadata and controls

27 lines (20 loc) · 1.05 KB

GetRecentFoodsResponse

Properties

Name Type Description Notes
foods List[Food] [optional]

Example

from fitbit_web_api.models.get_recent_foods_response import GetRecentFoodsResponse

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

# convert the object into a dict
get_recent_foods_response_dict = get_recent_foods_response_instance.to_dict()
# create an instance of GetRecentFoodsResponse from a dict
get_recent_foods_response_from_dict = GetRecentFoodsResponse.from_dict(get_recent_foods_response_dict)

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