Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.15 KB

File metadata and controls

31 lines (24 loc) · 1.15 KB

Schema1Output

Schema1

Properties

Name Type Description Notes
actual_instance ActualInstance4 [optional]
one_of_schemas List[str] [optional]
oneof_schema_1_validator Reference [optional]
oneof_schema_2_validator SchemaOneOfOutput [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.schema1_output import Schema1Output

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

# convert the object into a dict
schema1_output_dict = schema1_output_instance.to_dict()
# create an instance of Schema1Output from a dict
schema1_output_from_dict = Schema1Output.from_dict(schema1_output_dict)

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