com.siftscience.GetMerchantsResponse Maven / Gradle / Ivy
The newest version!
package com.siftscience;
import com.siftscience.model.GetMerchantsResponseBody;
import okhttp3.Response;
import java.io.IOException;
import static com.siftscience.FieldSet.gson;
public class GetMerchantsResponse extends SiftMerchantResponse {
public GetMerchantsResponse(Response okResponse, FieldSet requestBody) throws IOException {
super(okResponse, requestBody);
}
@Override
void populateBodyFromJson(String jsonBody) {
body = gson.fromJson(jsonBody, GetMerchantsResponseBody.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy