Interface SendMessageReturn

interface SendMessageReturn {
    ack: number;
    from?: string;
    id: string;
    latestEditMsgKey?: MsgKey;
    sendMsgResult: Promise<SendMsgResult>;
    to?: string;
}

Properties

ack: number
from?: string
id: string
latestEditMsgKey?: MsgKey
sendMsgResult: Promise<SendMsgResult>
to?: string