InputValue
Name | Type | Description | Notes |
---|---|---|---|
actual_instance | object | [optional] | |
any_of_schemas | List[str] | [optional] | |
anyof_schema_1_validator | InputValueNoObjectInput | [optional] | |
anyof_schema_2_validator | object | [optional] |
from unity_sps_ogc_processes_api_python_client.models.input_value_input import InputValueInput
# TODO update the JSON string below
json = "{}"
# create an instance of InputValueInput from a JSON string
input_value_input_instance = InputValueInput.from_json(json)
# print the JSON string representation of the object
print(InputValueInput.to_json())
# convert the object into a dict
input_value_input_dict = input_value_input_instance.to_dict()
# create an instance of InputValueInput from a dict
input_value_input_from_dict = InputValueInput.from_dict(input_value_input_dict)