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

    Interface EditPollInput

    Properties required to edit a poll.

    EditPollInput

    interface EditPollInput {
        answers: string[];
        handleId: HandleId;
        maxSelections: number;
        pollId: string;
        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.

    pollId: string

    The identifier of the poll to edit.

    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.