GlobalConfigurationItem
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
key_name |
str |
||
string_value |
str |
||
value_type |
str |
||
can_overwrite |
bool |
||
upper_bound |
float |
[optional] |
|
is_public |
bool |
Example
from h2ogpte.rest_sync.models.global_configuration_item import GlobalConfigurationItem
# TODO update the JSON string below
json = "{}"
# create an instance of GlobalConfigurationItem from a JSON string
global_configuration_item_instance = GlobalConfigurationItem.from_json(json)
# print the JSON string representation of the object
print(GlobalConfigurationItem.to_json())
# convert the object into a dict
global_configuration_item_dict = global_configuration_item_instance.to_dict()
# create an instance of GlobalConfigurationItem from a dict
global_configuration_item_from_dict = GlobalConfigurationItem.from_dict(global_configuration_item_dict)