jira.js
    Preparing search index...

    Function getVotes

    • A REST sub-resource representing the voters on the issue.

      Parameters

      • client: Client
      • parameters: { issueIdOrKey: string }
        • issueIdOrKey: string

          Issue id or key

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              hasVoted?: boolean;
              self?: string;
              voters?: {
                  active?: boolean;
                  avatarUrls?: Record<string, string>;
                  displayName?: string;
                  emailAddress?: string;
                  key?: string;
                  name?: string;
                  self?: string;
                  timeZone?: string;
                  [key: string]: unknown;
              }[];
              votes?: number;
              [key: string]: unknown;
          },
      >