UserConfigurationItem
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
key_name |
str |
||
string_value |
str |
||
value_type |
str |
Example
from h2ogpte.rest_sync.models.user_configuration_item import UserConfigurationItem
# TODO update the JSON string below
json = "{}"
# create an instance of UserConfigurationItem from a JSON string
user_configuration_item_instance = UserConfigurationItem.from_json(json)
# print the JSON string representation of the object
print(UserConfigurationItem.to_json())
# convert the object into a dict
user_configuration_item_dict = user_configuration_item_instance.to_dict()
# create an instance of UserConfigurationItem from a dict
user_configuration_item_from_dict = UserConfigurationItem.from_dict(user_configuration_item_dict)