All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.siftscience.UnlabelResponse Maven / Gradle / Ivy

There is a newer version: 3.16.0
Show newest version
package com.siftscience;

import okhttp3.Response;

import java.io.IOException;

public class UnlabelResponse extends SiftResponse {
    UnlabelResponse(Response okResponse, FieldSet requestBody) throws IOException {
        super(okResponse, requestBody);
    }

    /**
     * This should never be called because the unlabel API doesn't return a response body.
     *
     * @param jsonBody
     */
    @Override
    void populateBodyFromJson(String jsonBody) {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy