Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.12 KB

InputParameterized.md

File metadata and controls

31 lines (24 loc) · 1.12 KB

InputParameterized

InputParameterized

Properties

Name Type Description Notes
input str
filter str [optional]
properties FieldsModifiersProperties [optional]
sort_by List[str] [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.input_parameterized import InputParameterized

# TODO update the JSON string below
json = "{}"
# create an instance of InputParameterized from a JSON string
input_parameterized_instance = InputParameterized.from_json(json)
# print the JSON string representation of the object
print(InputParameterized.to_json())

# convert the object into a dict
input_parameterized_dict = input_parameterized_instance.to_dict()
# create an instance of InputParameterized from a dict
input_parameterized_from_dict = InputParameterized.from_dict(input_parameterized_dict)

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