The authorization key parameters.
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | The authorization key name. | |
| value | str | The authorization key value. | |
| title | str | The authorization key title. | [optional] |
from docspace_api_sdk.models.auth_key import AuthKey
# TODO update the JSON string below
json = "{}"
# create an instance of AuthKey from a JSON string
auth_key_instance = AuthKey.from_json(json)
# print the JSON string representation of the object
print(AuthKey.to_json())
# convert the object into a dict
auth_key_dict = auth_key_instance.to_dict()
# create an instance of AuthKey from a dict
auth_key_from_dict = AuthKey.from_dict(auth_key_dict)