mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
996 B
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)