Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 924 Bytes

StoreNearby.md

File metadata and controls

30 lines (22 loc) · 924 Bytes

StoreNearby

Properties

Name Type Description Notes
lat str [optional]
lng str [optional]
distance int [optional]

Example

from sparkfly_client.models.store_nearby import StoreNearby

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

# convert the object into a dict
store_nearby_dict = store_nearby_instance.to_dict()
# create an instance of StoreNearby from a dict
store_nearby_form_dict = store_nearby.from_dict(store_nearby_dict)

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