Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.43 KB

InlineOrRefDataInput.md

File metadata and controls

37 lines (30 loc) · 1.43 KB

InlineOrRefDataInput

Properties

Name Type Description Notes
bbox List[BboxBboxInner]
crs BboxDefCrs [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 InputValueInput

Example

from unity_sps_ogc_processes_api_python_client.models.inline_or_ref_data_input import InlineOrRefDataInput

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

# convert the object into a dict
inline_or_ref_data_input_dict = inline_or_ref_data_input_instance.to_dict()
# create an instance of InlineOrRefDataInput from a dict
inline_or_ref_data_input_from_dict = InlineOrRefDataInput.from_dict(inline_or_ref_data_input_dict)

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