Jira.js - Jira Cloud API library
    Preparing search index...

    Interface Votes

    The details of votes on an issue.

    interface Votes {
        hasVoted?: boolean;
        self?: string;
        voters?: Version2Models.User[];
        votes?: number;
    }
    Index

    Properties

    hasVoted?: boolean

    Whether the user making this request has voted on the issue.

    self?: string

    The URL of these issue vote details.

    voters?: Version2Models.User[]

    List of the users who have voted on this issue. An empty list is returned when the calling user doesn't have the View voters and watchers project permission.

    votes?: number

    The number of votes on the issue.