Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.17 KB

File metadata and controls

executable file
·
31 lines (22 loc) · 1.17 KB

GeoDistanceLocationAnchor

Specifies the location of the pin point used for search

Properties

Name Type Description Notes
lat float Latitude of the anchor point [optional]
lon float Longitude of the anchor point [optional]

Example

from manticoresearch.models.geo_distance_location_anchor import GeoDistanceLocationAnchor

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

# convert the object into a dict
geo_distance_location_anchor_dict = geo_distance_location_anchor_instance.to_dict()
# create an instance of GeoDistanceLocationAnchor from a dict
geo_distance_location_anchor_from_dict = GeoDistanceLocationAnchor.from_dict(geo_distance_location_anchor_dict)

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