Back to project page android-http.
The source code is released under:
Apache License
If you think the Android project android-http 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.example.markom.http.schema; //from w w w . ja v a2 s. c om import com.google.gson.annotations.SerializedName; import com.markom.android.http.model.ServiceResponse; public class CustomServiceResponse<T> extends ServiceResponse<T> { @SerializedName("meta") private Meta meta; @SerializedName("pagination") private Pagination pagination; public Meta getMeta() { return meta; } public void setMeta(Meta meta) { this.meta = meta; } public Pagination getPagination() { return pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } }