Back to project page jsonxmlcompare.
The source code is released under:
Apache License
If you think the Android project jsonxmlcompare 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.davidtpate.speedtest.model; // w w w .ja v a 2 s . co m import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class DataModel { @SerializedName("data") @Expose private Posts mPosts; public Posts getPosts() { return mPosts; } }