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

eleme.openapi.sdk.api.protocol.ResponsePayload Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.protocol;

import java.io.Serializable;

public class ResponsePayload implements Serializable {
    /**
     * Request id
     */
    private String id;

    /**
     * Invocation result
     */
    private Object result;

    /**
     * Invocation error
     */
    private ErrorPayload error;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public Object getResult() {
        return result;
    }

    public void setResult(Object result) {
        this.result = result;
    }

    public ErrorPayload getError() {
        return error;
    }

    public void setError(ErrorPayload error) {
        this.error = error;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy