Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.09 KB

File metadata and controls

32 lines (24 loc) · 1.09 KB

UserUsage

Properties

Name Type Description Notes
window UserUsageWindow
api UserUsageApi
totals UserUsageTotals
top_endpoints List[UserUsageEndpoint]
recent_requests List[UserUsageRecentRequest]

Example

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)

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