| Name | Type | Description | Notes |
|---|---|---|---|
| light_sleep_summary | BreathingRateIntradaySummary | [optional] | |
| deep_sleep_summary | BreathingRateIntradaySummary | [optional] | |
| rem_sleep_summary | BreathingRateIntradaySummary | [optional] | |
| full_sleep_summary | BreathingRateIntradaySummary | [optional] |
from fitbit_web_api.models.breathing_rate_intraday_value import BreathingRateIntradayValue
# TODO update the JSON string below
json = "{}"
# create an instance of BreathingRateIntradayValue from a JSON string
breathing_rate_intraday_value_instance = BreathingRateIntradayValue.from_json(json)
# print the JSON string representation of the object
print(BreathingRateIntradayValue.to_json())
# convert the object into a dict
breathing_rate_intraday_value_dict = breathing_rate_intraday_value_instance.to_dict()
# create an instance of BreathingRateIntradayValue from a dict
breathing_rate_intraday_value_from_dict = BreathingRateIntradayValue.from_dict(breathing_rate_intraday_value_dict)