Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 971 Bytes

ApiKeyDTO.md

File metadata and controls

34 lines (25 loc) · 971 Bytes

ApiKeyDTO

Properties

Name Type Description Notes
created_at datetime
id str
name str
role int
updated_at datetime
user_id str

Example

from trieve_py_client.models.api_key_dto import ApiKeyDTO

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

# convert the object into a dict
api_key_dto_dict = api_key_dto_instance.to_dict()
# create an instance of ApiKeyDTO from a dict
api_key_dto_form_dict = api_key_dto.from_dict(api_key_dto_dict)

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