Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 955 Bytes

File metadata and controls

31 lines (22 loc) · 955 Bytes

APIKeyResponse

Properties

Name Type Description Notes
name str
id str
created_at datetime

Example

from platform_api_python_client.models.api_key_response import APIKeyResponse

# TODO update the JSON string below
json = "{}"
# create an instance of APIKeyResponse from a JSON string
api_key_response_instance = APIKeyResponse.from_json(json)
# print the JSON string representation of the object
print(APIKeyResponse.to_json())

# convert the object into a dict
api_key_response_dict = api_key_response_instance.to_dict()
# create an instance of APIKeyResponse from a dict
api_key_response_from_dict = APIKeyResponse.from_dict(api_key_response_dict)

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