Back to project page android-google-places-master.
The source code is released under:
MIT License
If you think the Android project android-google-places-master 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.a2plab.googleplaces.models; // www. j av a 2s . co m import java.io.Serializable; import java.util.List; import com.google.api.client.util.Key; public class Review implements Serializable { private static final long serialVersionUID = -8634439242407814234L; @Key protected List<Aspect> aspects; @Key public String author_name; @Key public String author_url; @Key public String text; @Key public long time; public static class Aspect implements Serializable { private static final long serialVersionUID = 6296158628038780369L; @Key public String type; @Key public double rating; } public List<Aspect> getAspects() { return aspects; } public String getAuthorName() { return author_name; } public String getAuthorUrl() { return author_url; } public String getText() { return text; } public long getTime() { return time; } }