| Name | Type | Description | Notes |
|---|---|---|---|
| status | bool | [optional] | |
| message | str | [optional] | |
| api_key | ApiKeyVerifyFields | [optional] |
from hyperstack.models.verify_api_key_response_model import VerifyApiKeyResponseModel
# TODO update the JSON string below
json = "{}"
# create an instance of VerifyApiKeyResponseModel from a JSON string
verify_api_key_response_model_instance = VerifyApiKeyResponseModel.from_json(json)
# print the JSON string representation of the object
print(VerifyApiKeyResponseModel.to_json())
# convert the object into a dict
verify_api_key_response_model_dict = verify_api_key_response_model_instance.to_dict()
# create an instance of VerifyApiKeyResponseModel from a dict
verify_api_key_response_model_form_dict = verify_api_key_response_model.from_dict(verify_api_key_response_model_dict)