Skip to content

Latest commit

 

History

History
46 lines (39 loc) · 2.06 KB

InputWorkflowsAnyOfInner.md

File metadata and controls

46 lines (39 loc) · 2.06 KB

InputWorkflowsAnyOfInner

Properties

Name Type Description Notes
bbox List[BboxBboxInner]
crs BboxDefCrs [optional]
collection str
filter str [optional]
properties FieldsModifiersProperties [optional]
sort_by List[str] [optional]
input str
inputs Dict[str, InputWorkflows1] [optional]
outputs Dict[str, OutputWorkflows1] [optional]
process str URI to the process execution end point (i.e., `.../processes/{processId}/execution`)
subscriber Subscriber [optional]
href str
hreflang str [optional]
rel str [optional]
title str [optional]
type str [optional]
encoding str [optional]
media_type str [optional]
var_schema FormatSchema [optional]
value InputValueWorkflows

Example

from unity_sps_ogc_processes_api_python_client.models.input_workflows_any_of_inner import InputWorkflowsAnyOfInner

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

# convert the object into a dict
input_workflows_any_of_inner_dict = input_workflows_any_of_inner_instance.to_dict()
# create an instance of InputWorkflowsAnyOfInner from a dict
input_workflows_any_of_inner_from_dict = InputWorkflowsAnyOfInner.from_dict(input_workflows_any_of_inner_dict)

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