io.github.mainstringargs.alpaca.websocket.message.UpdateMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpaca-java Show documentation
Show all versions of alpaca-java Show documentation
Java API for Alpaca trading
package io.github.mainstringargs.alpaca.websocket.message;
import io.github.mainstringargs.alpaca.enums.MessageType;
/**
* The Interface UpdateMessage.
*/
public interface UpdateMessage {
/**
* Gets the message type.
*
* @return the message type
*/
public MessageType getMessageType();
}