thousandeyes-sdk-python/test_templates_api/docs/UserInputDefaultValue.md
2023-12-11 09:29:15 +00:00

996 B

UserInputDefaultValue

Default value of user input field.

Properties

Name Type Description Notes

Example

from test_templates_api.models.user_input_default_value import UserInputDefaultValue

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

# convert the object into a dict
user_input_default_value_dict = user_input_default_value_instance.to_dict()
# create an instance of UserInputDefaultValue from a dict
user_input_default_value_form_dict = user_input_default_value.from_dict(user_input_default_value_dict)

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