| Name | Type | Description | Notes |
|---|---|---|---|
| window | UserUsageWindow | ||
| api | UserUsageApi | ||
| totals | UserUsageTotals | ||
| top_endpoints | List[UserUsageEndpoint] | ||
| recent_requests | List[UserUsageRecentRequest] |
from cfbd.models.user_usage import UserUsage
# TODO update the JSON string below
json = "{}"
# create an instance of UserUsage from a JSON string
user_usage_instance = UserUsage.from_json(json)
# print the JSON string representation of the object
print UserUsage.to_json()
# convert the object into a dict
user_usage_dict = user_usage_instance.to_dict()
# create an instance of UserUsage from a dict
user_usage_from_dict = UserUsage.from_dict(user_usage_dict)