Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.14 KB

InputValueInput.md

File metadata and controls

31 lines (24 loc) · 1.14 KB

InputValueInput

InputValue

Properties

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]

Example

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)

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