| Name |
Type |
Description |
Notes |
| tenant_id |
UUID |
|
|
| name |
str |
|
[optional] |
| rate_limit_max |
int |
|
[optional] |
| rate_limit_window |
str |
|
[optional] |
from stratum.models.create_api_key_input import CreateApiKeyInput
# TODO update the JSON string below
json = "{}"
# create an instance of CreateApiKeyInput from a JSON string
create_api_key_input_instance = CreateApiKeyInput.from_json(json)
# print the JSON string representation of the object
print(CreateApiKeyInput.to_json())
# convert the object into a dict
create_api_key_input_dict = create_api_key_input_instance.to_dict()
# create an instance of CreateApiKeyInput from a dict
create_api_key_input_from_dict = CreateApiKeyInput.from_dict(create_api_key_input_dict)
[Back to Model list] [Back to API list] [Back to README]