Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 935 Bytes

File metadata and controls

30 lines (21 loc) · 935 Bytes

GeoIndexParams

Configuration for geo index.

Properties

Name Type Description Notes
type str [optional] [default to 'geo']

Example

from mixpeek.models.geo_index_params import GeoIndexParams

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

# convert the object into a dict
geo_index_params_dict = geo_index_params_instance.to_dict()
# create an instance of GeoIndexParams from a dict
geo_index_params_from_dict = GeoIndexParams.from_dict(geo_index_params_dict)

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