Back to project page Buddy-Android-SDK.
The source code is released under:
Apache License
If you think the Android project Buddy-Android-SDK 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.buddy.sdk.models; //from ww w .ja v a 2 s .c o m import com.google.gson.annotations.SerializedName; /** * Created by shawn on 7/7/14. */ public class Picture extends BinaryModelBase { public class SizeInfo { public int w; public int h; } public String title; public String caption; public SizeInfo size; public String watermark; }