Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 981 Bytes

AuthTokenInput.md

File metadata and controls

31 lines (22 loc) · 981 Bytes

AuthTokenInput

Properties

Name Type Description Notes
description str [optional]
href str [optional]
read_only bool [optional]

Example

from equinix_metal.models.auth_token_input import AuthTokenInput

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

# convert the object into a dict
auth_token_input_dict = auth_token_input_instance.to_dict()
# create an instance of AuthTokenInput from a dict
auth_token_input_form_dict = auth_token_input.from_dict(auth_token_input_dict)

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