/** * 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. */ /** * Count of issues assigned to a component. * @export * @interface ComponentIssuesCount */ export interface ComponentIssuesCount { /** * The URL for this count of issues for a component. * @type {string} * @memberof ComponentIssuesCount */ readonly self?: string; /** * The count of issues assigned to a component. * @type {number} * @memberof ComponentIssuesCount */ readonly issueCount?: number; } export declare function ComponentIssuesCountFromJSON(json: any): ComponentIssuesCount; export declare function ComponentIssuesCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentIssuesCount; export declare function ComponentIssuesCountToJSON(value?: ComponentIssuesCount): any;