Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

GenerateApiKeyResponseModel

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
api_key str [optional]

Example

from hyperstack.models.generate_api_key_response_model import GenerateApiKeyResponseModel

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

# convert the object into a dict
generate_api_key_response_model_dict = generate_api_key_response_model_instance.to_dict()
# create an instance of GenerateApiKeyResponseModel from a dict
generate_api_key_response_model_form_dict = generate_api_key_response_model.from_dict(generate_api_key_response_model_dict)

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