Interface OutgoingMessage

interface OutgoingMessage {
    attachment?: Attachment;
    botId: string;
    call?: Call;
    conversation?: string;
    conversationId?: string;
    emoji?: string;
    handle?: string;
    locale?: string;
    messageId?: string;
    poll?: Poll;
    refMessageId?: string;
    text?: Text;
    token?: string;
    type: string;
    userId: string;
}

Properties

attachment?: Attachment
botId: string
call?: Call
conversation?: string
conversationId?: string
emoji?: string
handle?: string
locale?: string
messageId?: string
poll?: Poll
refMessageId?: string
text?: Text
token?: string
type: string
userId: string