@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) • 522 B
text/typescript
import type { User } from './user';
/** The details of votes on an issue. */
export interface Votes {
/** Whether the user making this request has voted on the issue. */
hasVoted?: boolean;
/** The URL of these issue vote details. */
self?: string;
/**
* 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[];
/** The number of votes on the issue. */
votes?: number;
}