Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.16 KB

InputValueOutput.md

File metadata and controls

31 lines (24 loc) · 1.16 KB

InputValueOutput

InputValue

Properties

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]

Example

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)

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