@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
17 lines (15 loc) • 518 B
text/typescript
import type { User } from './user';
/** The details of votes on an issue. */
export interface Votes {
/** The URL of these issue vote details. */
self: string;
/** The number of votes on the issue. */
votes: number;
/** Whether the user making this request has voted on the issue. */
hasVoted: boolean;
/**
* 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.
*/
voters: User[];
}