Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 994 Bytes

GetApiKeysResponse.md

File metadata and controls

29 lines (20 loc) · 994 Bytes

GetApiKeysResponse

Properties

Name Type Description Notes
api_keys List[ApiKey] List of ApiKeys [optional]

Example

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)

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