Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 962 Bytes

File metadata and controls

31 lines (22 loc) · 962 Bytes

SetConfigInput

Properties

Name Type Description Notes
value object
locked bool [optional]
sensitive bool [optional]

Example

from stratum.models.set_config_input import SetConfigInput

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

# convert the object into a dict
set_config_input_dict = set_config_input_instance.to_dict()
# create an instance of SetConfigInput from a dict
set_config_input_from_dict = SetConfigInput.from_dict(set_config_input_dict)

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