Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1 KB

File metadata and controls

33 lines (24 loc) · 1 KB

ApiKeyFields

Properties

Name Type Description Notes
created_at datetime [optional]
description str [optional]
id int [optional]
key str [optional]
name str [optional]

Example

from hyperstack.models.api_key_fields import ApiKeyFields

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

# convert the object into a dict
api_key_fields_dict = api_key_fields_instance.to_dict()
# create an instance of ApiKeyFields from a dict
api_key_fields_from_dict = ApiKeyFields.from_dict(api_key_fields_dict)

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