Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.13 KB

File metadata and controls

31 lines (24 loc) · 1.13 KB

Schema1Input

Schema1

Properties

Name Type Description Notes
actual_instance ActualInstance3 [optional]
one_of_schemas List[str] [optional]
oneof_schema_1_validator Reference [optional]
oneof_schema_2_validator SchemaOneOfInput [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.schema1_input import Schema1Input

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

# convert the object into a dict
schema1_input_dict = schema1_input_instance.to_dict()
# create an instance of Schema1Input from a dict
schema1_input_from_dict = Schema1Input.from_dict(schema1_input_dict)

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