| Name | Type | Description | Notes |
|---|---|---|---|
| items | Dict[str, UserFlagSetting] | An array of flag settings for the user | |
| links | Dict[str, Link] | The location and content type of related resources |
from launchdarkly_api.models.user_flag_settings import UserFlagSettings
# TODO update the JSON string below
json = "{}"
# create an instance of UserFlagSettings from a JSON string
user_flag_settings_instance = UserFlagSettings.from_json(json)
# print the JSON string representation of the object
print(UserFlagSettings.to_json())
# convert the object into a dict
user_flag_settings_dict = user_flag_settings_instance.to_dict()
# create an instance of UserFlagSettings from a dict
user_flag_settings_from_dict = UserFlagSettings.from_dict(user_flag_settings_dict)