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

org.brewchain.sdk.model.ChainRequest Maven / Gradle / Ivy

The newest version!
package org.brewchain.sdk.model;
 
public class ChainRequest {
    
    private String domain;
    
    private String url;
    
    private String body;

    public ChainRequest(String url, String body){
        this.url = url;
        this.body = body;
    }
    public String getUrl(){
        return url;
    }
    public void setUrl(String _url) { this.url = _url;}
    public String getBody(){
        return body;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy