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

com.larksuite.oapi.core.api.ReqCallResult Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
package com.larksuite.oapi.core.api;

import com.larksuite.oapi.core.api.response.Response;

public class ReqCallResult {
    private final ReqCaller reqCaller;
    private final Response response;
    private final Exception exception;


    public ReqCallResult(ReqCaller reqCaller) {
        this.reqCaller = reqCaller;
        this.response = reqCaller.getResponse();
        this.exception = reqCaller.getException();
    }

    public ReqCaller getReqCaller() {
        return reqCaller;
    }

    public Response getResponse() {
        return response;
    }

    public Exception getException() {
        return exception;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy