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