Name |
Type |
Description |
Notes |
api_key |
str |
API Key Identifier |
[optional] |
from formkiq_client.models.add_api_key_response import AddApiKeyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AddApiKeyResponse from a JSON string
add_api_key_response_instance = AddApiKeyResponse.from_json(json)
# print the JSON string representation of the object
print(AddApiKeyResponse.to_json())
# convert the object into a dict
add_api_key_response_dict = add_api_key_response_instance.to_dict()
# create an instance of AddApiKeyResponse from a dict
add_api_key_response_from_dict = AddApiKeyResponse.from_dict(add_api_key_response_dict)
[Back to Model list] [Back to API list] [Back to README]