Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.01 KB

File metadata and controls

31 lines (23 loc) · 1.01 KB

UserUsageEndpoint

Properties

Name Type Description Notes
api UserUsageApi
endpoint str
requests float
last_used_at str

Example

from cfbd.models.user_usage_endpoint import UserUsageEndpoint

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

# convert the object into a dict
user_usage_endpoint_dict = user_usage_endpoint_instance.to_dict()
# create an instance of UserUsageEndpoint from a dict
user_usage_endpoint_from_dict = UserUsageEndpoint.from_dict(user_usage_endpoint_dict)

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