The details of votes on an issue.

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

Properties

hasVoted?: boolean

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

self?: string

The URL of these issue vote details.

voters?: 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.