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

    Interface Poll

    Poll message content.

    Poll

    interface Poll {
        answers: string[];
        isEdited: boolean;
        kind: string;
        maxSelections: number;
        question: string;
        repliedToMessageId?: string;
        selfDestructInfo?: SelfDestructInfo;
        threadId?: string;
        type: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    answers: string[]

    The answers of the poll.

    isEdited: boolean

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

    kind: string

    The kind of poll, disclosed or undisclosed.

    maxSelections: number

    The maximum number of selections for the poll.

    question: string

    The question of the poll.

    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.