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

io.coinapi.websocket.model.MessageBase Maven / Gradle / Ivy

package io.coinapi.websocket.model;

import com.dslplatform.json.CompiledJson;

@CompiledJson
public class MessageBase {

    protected String type;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy