Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.21 KB

AuthToken.md

File metadata and controls

37 lines (28 loc) · 1.21 KB

AuthToken

Properties

Name Type Description Notes
created_at datetime [optional]
description str Available only for API keys [optional]
href str [optional]
id str [optional]
project AuthTokenProject [optional]
read_only bool [optional]
token str [optional]
updated_at datetime [optional]
user AuthTokenUser [optional]

Example

from equinix_metal.models.auth_token import AuthToken

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

# convert the object into a dict
auth_token_dict = auth_token_instance.to_dict()
# create an instance of AuthToken from a dict
auth_token_form_dict = auth_token.from_dict(auth_token_dict)

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