Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 882 Bytes

File metadata and controls

29 lines (20 loc) · 882 Bytes

APIKeyPayload

Properties

Name Type Description Notes
api_key str [optional]

Example

from hyperstack.models.api_key_payload import APIKeyPayload

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

# convert the object into a dict
api_key_payload_dict = api_key_payload_instance.to_dict()
# create an instance of APIKeyPayload from a dict
api_key_payload_form_dict = api_key_payload.from_dict(api_key_payload_dict)

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