Datalynk Client
    Preparing search index...

    Interface ChatMessage

    interface ChatMessage {
        body: string;
        clientId?: string;
        conversationId: string;
        createdAt: string;
        id: string;
        readAt?: string;
        recipientId: number;
        senderId: number;
        status?: ChatMessageStatus;
    }
    Index

    Properties

    body: string
    clientId?: string
    conversationId: string
    createdAt: string
    id: string
    readAt?: string
    recipientId: number
    senderId: number