/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { User } from './'; /** * The details of votes on an issue. * @export * @interface Votes */ export interface Votes { /** * The number of votes on the issue. * @type {number} * @memberof Votes */ readonly votes?: number; /** * The URL of these issue vote details. * @type {string} * @memberof Votes */ readonly 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. * @type {Array} * @memberof Votes */ readonly voters?: Array; /** * Indicates whether the user making this request has voted on the issue. * @type {boolean} * @memberof Votes */ readonly hasVoted?: boolean; } export declare function VotesFromJSON(json: any): Votes; export declare function VotesFromJSONTyped(json: any, ignoreDiscriminator: boolean): Votes; export declare function VotesToJSON(value?: Votes): any;