Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 872 Bytes

File metadata and controls

29 lines (20 loc) · 872 Bytes

ApiKeyCreated

Properties

Name Type Description Notes
api_key str

Example

from sensorbucket.models.api_key_created import ApiKeyCreated

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

# convert the object into a dict
api_key_created_dict = api_key_created_instance.to_dict()
# create an instance of ApiKeyCreated from a dict
api_key_created_from_dict = ApiKeyCreated.from_dict(api_key_created_dict)

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