@sudoplatform/sudo-secure-communications
    Preparing search index...

    Interface PollResponse

    Poll response message content.

    PollResponse

    interface PollResponse {
        answers: string[];
        isEdited: boolean;
        pollId: string;
        repliedToMessageId?: string;
        selfDestructInfo?: SelfDestructInfo;
        threadId?: string;
        type: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    answers: string[]

    The answers of the poll response.

    isEdited: boolean

    True if this message has been edited by the sender, false if not.

    pollId: string

    The ID of the poll start event.

    repliedToMessageId?: string

    The message ID of the message this message is replying to (if this message is a reply).

    selfDestructInfo?: SelfDestructInfo

    Self-destructing properties of a message.

    threadId?: string

    The thread ID of the message (if this message is in a thread).

    type: string

    The type of the message content.