Back to project page FoursquareWear.
The source code is released under:
GNU General Public License
If you think the Android project FoursquareWear listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nlefler.nlfoursquare.Model.Venue; //from w w w . j a v a 2s. c o m /** * Created by Nathan Lefler on 5/25/14. */ public class NLFoursquareLocation { public String address; public String crossStreet; public String city; public String state; public String postalCode; public String country; public float lat; public float lng; public float distance; public boolean isFuzzed; }