com.gocardless.http.RequestWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gocardless-pro Show documentation
Show all versions of gocardless-pro Show documentation
Client library for accessing the GoCardless Pro API
package com.gocardless.http;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
final class RequestWriter {
private final Gson gson;
RequestWriter(Gson gson) {
this.gson = gson;
}
public String write(T object, String envelope) {
JsonObject result = new JsonObject();
result.add(envelope, gson.toJsonTree(object));
return gson.toJson(result);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy