Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

GenerateUpdateApiKeyPayload

Properties

Name Type Description Notes
description str [optional]
name str

Example

from hyperstack.models.generate_update_api_key_payload import GenerateUpdateApiKeyPayload

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

# convert the object into a dict
generate_update_api_key_payload_dict = generate_update_api_key_payload_instance.to_dict()
# create an instance of GenerateUpdateApiKeyPayload from a dict
generate_update_api_key_payload_from_dict = GenerateUpdateApiKeyPayload.from_dict(generate_update_api_key_payload_dict)

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