Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 995 Bytes

File metadata and controls

27 lines (20 loc) · 995 Bytes

GetMealsResponse

Properties

Name Type Description Notes
meals List[Meal] [optional]

Example

from fitbit_web_api.models.get_meals_response import GetMealsResponse

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

# convert the object into a dict
get_meals_response_dict = get_meals_response_instance.to_dict()
# create an instance of GetMealsResponse from a dict
get_meals_response_from_dict = GetMealsResponse.from_dict(get_meals_response_dict)

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