| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of API Key | [optional] |
| groups | List[str] | Optional list of groups to add as custom claims to API Key | [optional] |
| permissions | List[ApiKeyPermission] | [optional] |
from formkiq_client.models.add_api_key_request import AddApiKeyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddApiKeyRequest from a JSON string
add_api_key_request_instance = AddApiKeyRequest.from_json(json)
# print the JSON string representation of the object
print(AddApiKeyRequest.to_json())
# convert the object into a dict
add_api_key_request_dict = add_api_key_request_instance.to_dict()
# create an instance of AddApiKeyRequest from a dict
add_api_key_request_from_dict = AddApiKeyRequest.from_dict(add_api_key_request_dict)