Name | Type | Description | Notes |
---|---|---|---|
api_keys | List[ApiKey] | List of ApiKeys | [optional] |
from formkiq_client.models.get_api_keys_response import GetApiKeysResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetApiKeysResponse from a JSON string
get_api_keys_response_instance = GetApiKeysResponse.from_json(json)
# print the JSON string representation of the object
print(GetApiKeysResponse.to_json())
# convert the object into a dict
get_api_keys_response_dict = get_api_keys_response_instance.to_dict()
# create an instance of GetApiKeysResponse from a dict
get_api_keys_response_from_dict = GetApiKeysResponse.from_dict(get_api_keys_response_dict)