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

    Interface CreatePollInput

    Properties required to create a poll.

    CreatePollInput

    interface CreatePollInput {
        answers: string[];
        handleId: HandleId;
        maxSelections: number;
        question: string;
        recipient: Recipient;
        type: PollType;
    }
    Index

    Properties

    answers: string[]

    The possible answers to the poll.

    handleId: HandleId

    Identifier of the handle owned by this client.

    maxSelections: number

    The maximum number of selections for the poll.

    question: string

    The question being posed for the poll.

    recipient: Recipient

    The target recipient.

    type: PollType

    Whether or not the poll participants can see the poll results.