/** * 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 { UserDetails } from './'; /** * The details of watchers on an issue. * @export * @interface Watchers */ export interface Watchers { /** * Details of the users watching this issue. * @type {Array} * @memberof Watchers */ readonly watchers?: Array; /** * Indicates whether the calling user is watching this issue. * @type {boolean} * @memberof Watchers */ readonly isWatching?: boolean; /** * The number of users watching this issue. * @type {number} * @memberof Watchers */ readonly watchCount?: number; /** * The URL of these issue watcher details. * @type {string} * @memberof Watchers */ readonly self?: string; } export declare function WatchersFromJSON(json: any): Watchers; export declare function WatchersFromJSONTyped(json: any, ignoreDiscriminator: boolean): Watchers; export declare function WatchersToJSON(value?: Watchers): any;