Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

ConfField

Properties

Name Type Description Notes
id int [optional]
app_id int [optional]
keyname str [optional]
type str [optional]
category str Configuration option category: API, Database, Behavior, Security or Other [optional] [default to '']
description str [optional]
defval str [optional]

Example

from multiflexi_client.models.conf_field import ConfField

# TODO update the JSON string below
json = "{}"
# create an instance of ConfField from a JSON string
conf_field_instance = ConfField.from_json(json)
# print the JSON string representation of the object
print(ConfField.to_json())

# convert the object into a dict
conf_field_dict = conf_field_instance.to_dict()
# create an instance of ConfField from a dict
conf_field_from_dict = ConfField.from_dict(conf_field_dict)

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