Serializer for User settings for stages and sources
| Name | Type | Description | Notes |
|---|---|---|---|
| object_uid | str | ||
| component | str | ||
| title | str | ||
| configure_url | str | [optional] | |
| icon_url | str | [optional] |
from authentik_client.models.user_setting import UserSetting
# TODO update the JSON string below
json = "{}"
# create an instance of UserSetting from a JSON string
user_setting_instance = UserSetting.from_json(json)
# print the JSON string representation of the object
print(UserSetting.to_json())
# convert the object into a dict
user_setting_dict = user_setting_instance.to_dict()
# create an instance of UserSetting from a dict
user_setting_from_dict = UserSetting.from_dict(user_setting_dict)