Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

AddApiKeyRequest

Properties

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]

Example

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)

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