Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 883 Bytes

APIKeyRequest.md

File metadata and controls

29 lines (20 loc) · 883 Bytes

APIKeyRequest

Properties

Name Type Description Notes
name str

Example

from platform_api_python_client.models.api_key_request import APIKeyRequest

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

# convert the object into a dict
api_key_request_dict = api_key_request_instance.to_dict()
# create an instance of APIKeyRequest from a dict
api_key_request_from_dict = APIKeyRequest.from_dict(api_key_request_dict)

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