/** * 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 { VersionUsageInCustomField } from './'; /** * Various counts of issues within a version. * @export * @interface VersionIssueCounts */ export interface VersionIssueCounts { /** * Count of issues where the `affectedVersion` is set to the version. * @type {number} * @memberof VersionIssueCounts */ readonly issuesAffectedCount?: number; /** * List of custom fields using the version. * @type {Array} * @memberof VersionIssueCounts */ readonly customFieldUsage?: Array; /** * The URL of these count details. * @type {string} * @memberof VersionIssueCounts */ readonly self?: string; /** * Count of issues where the `fixVersion` is set to the version. * @type {number} * @memberof VersionIssueCounts */ readonly issuesFixedCount?: number; /** * Count of issues where a version custom field is set to the version. * @type {number} * @memberof VersionIssueCounts */ readonly issueCountWithCustomFieldsShowingVersion?: number; } export declare function VersionIssueCountsFromJSON(json: any): VersionIssueCounts; export declare function VersionIssueCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): VersionIssueCounts; export declare function VersionIssueCountsToJSON(value?: VersionIssueCounts): any;