Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

GeoDistanceLocationAnchor.md

File metadata and controls

29 lines (20 loc) · 1.12 KB

GeoDistanceLocationAnchor

Specifies the location of the pin point used for search

Properties

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

Example

from manticoresearch.models.geo_distance_location_anchor import GeoDistanceLocationAnchor

# 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]