The configuration parameters of the user currently viewing or editing the document.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The user ID. | [optional] |
| name | str | The full name of the user. | [optional] |
| image | str | The path to the user's avatar. | [optional] |
| roles | List[str] | Roles | [optional] |
| customer_id | str | [optional] |
from docspace_api_sdk.models.user_config import UserConfig
# TODO update the JSON string below
json = "{}"
# create an instance of UserConfig from a JSON string
user_config_instance = UserConfig.from_json(json)
# print the JSON string representation of the object
print(UserConfig.to_json())
# convert the object into a dict
user_config_dict = user_config_instance.to_dict()
# create an instance of UserConfig from a dict
user_config_from_dict = UserConfig.from_dict(user_config_dict)