ts-algochat
    Preparing search index...

    Interface Message

    A chat message

    interface Message {
        amount?: number;
        confirmedRound: number;
        content: string;
        direction: MessageDirection;
        id: string;
        recipient: string;
        replyContext?: ReplyContext;
        sender: string;
        timestamp: Date;
    }
    Index

    Properties

    amount?: number

    Amount transferred in microAlgos

    confirmedRound: number
    content: string
    direction: MessageDirection
    id: string
    recipient: string
    replyContext?: ReplyContext
    sender: string
    timestamp: Date