Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import com.google.gson.annotations.SerializedName;
- public class JsonRpcABCRequest {
- @SerializedName("propertyA")
- private String pA = "valueA";
- @SerializedName("propertyB")
- private String pB = "valueB";
- }
- new Gson().toJson(new JsonRpcABCRequest())
Advertisement
Add Comment
Please, Sign In to add comment