Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 910 Bytes

File metadata and controls

29 lines (21 loc) · 910 Bytes

UserUsageWindow

Properties

Name Type Description Notes
start str
end str

Example

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)

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