| Name | Type | Description | Notes |
|---|---|---|---|
| start | str | ||
| end | str |
from cfbd.models.user_usage_window import UserUsageWindow
# TODO update the JSON string below
json = "{}"
# create an instance of UserUsageWindow from a JSON string
user_usage_window_instance = UserUsageWindow.from_json(json)
# print the JSON string representation of the object
print UserUsageWindow.to_json()
# convert the object into a dict
user_usage_window_dict = user_usage_window_instance.to_dict()
# create an instance of UserUsageWindow from a dict
user_usage_window_from_dict = UserUsageWindow.from_dict(user_usage_window_dict)