Represents a message in a chat

interface Message {
    authorWebId: string;
    date: Date;
    text: string;
    uri: string;
}

Properties

authorWebId: string

WebID of the message author

date: Date

Date and time the message was posted

text: string

Text of the message

uri: string

URI identifying the message