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] |
| type | str | The field type: text, password, select, toggle. | [optional] |
| options | List[str] | The list of options for select type fields. | [optional] |
| depends_on | str | The name of another key this field depends on for visibility. | [optional] |
| depends_on_value | str | The value of ASC.Web.Studio.UserControls.Management.AuthKey.DependsOn key that makes this field visible. | [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)