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

com.what3words.javawrapper.response.Response Maven / Gradle / Ivy

The newest version!
package com.what3words.javawrapper.response;

import com.what3words.javawrapper.response.APIResponse.What3WordsError;

public class Response  {
    private transient APIResponse response;

    public void setResponse(APIResponse response) {
        this.response = response;
    }
    
    public What3WordsError getError() {
        return response.getError();
    }
    
    public boolean isSuccessful() {
        return response.isSuccessful();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy