Skip to content

Feature

Properties

Name Type Description Notes
type str [optional]
bbox List[float] [optional]
id str [optional]
geometry Geometry [optional]
properties Dict[str, object] [optional]

Example

from dmi_open_data.lightningdata.models.feature import Feature

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

# convert the object into a dict
feature_dict = feature_instance.to_dict()
# create an instance of Feature from a dict
feature_from_dict = Feature.from_dict(feature_dict)
[Back to Model list] [Back to API list] [Back to README]