Package one.tranic.scorpio.api.impl
Interface Message
-
- All Implemented Interfaces:
public interface Message
Represents a message in the Scorpio API. This interface defines the essential properties of a message, including sender details and content.
-
-
Method Summary
Modifier and Type Method Description abstract String
getSenderId()
The unique identifier of the message sender. abstract String
getSenderName()
The name of the message sender. abstract String
getContent()
The content of the message. abstract String
getPlatform()
The platform from which the message was sent. -
-
Method Detail
-
getSenderId
abstract String getSenderId()
The unique identifier of the message sender.
-
getSenderName
abstract String getSenderName()
The name of the message sender.
-
getContent
abstract String getContent()
The content of the message.
-
getPlatform
abstract String getPlatform()
The platform from which the message was sent.
-
-
-
-