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.
/** * /* w ww .ja v a 2 s . c om*/ */ package com.a2plab.googleplaces.models; import java.io.Serializable; import com.google.api.client.util.Key; /** * @author Giuseppe Mastroeni - aka: Kataklisma E-Mail: m.giuseppe@a2plab.com * */ public class Photo implements GooglePlaceBase { private static final long serialVersionUID = -2840484304599187115L; @Key private HtmlAttributions[] html_attributions; @Key private int height; @Key private int width; @Key private String photo_reference; public class HtmlAttributions implements Serializable { private static final long serialVersionUID = 5071127066265551063L; } public HtmlAttributions[] getHtmlAttributions() { return html_attributions; } public int getHeight() { return height; } public int getWidth() { return width; } public String getPhotoReference() { return photo_reference; } }