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

com.github.kubatatami.judonetworking.RequestModel Maven / Gradle / Ivy

package com.github.kubatatami.judonetworking;

class RequestModel {

    private final String method;
    private final Object params;
    private final Integer id;


    public RequestModel(String method, Object params, Integer id) {
        super();
        this.method = method;
        this.params = params;
        this.id = id;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy