Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1013 Bytes

File metadata and controls

29 lines (20 loc) · 1013 Bytes

VerifyApiKeyPayload

Properties

Name Type Description Notes
api_key str The direction of traffic that the firewall rule applies to.

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_from_dict = VerifyApiKeyPayload.from_dict(verify_api_key_payload_dict)

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