Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 968 Bytes

File metadata and controls

29 lines (20 loc) · 968 Bytes

VerifyApiKeyPayload

Properties

Name Type Description Notes
api_key str [optional]

Example

from hyperstack.models.verify_api_key_payload import VerifyApiKeyPayload

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

# convert the object into a dict
verify_api_key_payload_dict = verify_api_key_payload_instance.to_dict()
# create an instance of VerifyApiKeyPayload from a dict
verify_api_key_payload_form_dict = verify_api_key_payload.from_dict(verify_api_key_payload_dict)

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