Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.02 KB

File metadata and controls

34 lines (25 loc) · 1.02 KB

UserSetting

Serializer for User settings for stages and sources

Properties

Name Type Description Notes
object_uid str
component str
title str
configure_url str [optional]
icon_url str [optional]

Example

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)

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