/** * 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 { IssueTypeBean, Priority, StatusDetails, UserDetails } from './'; /** * Key fields from the linked issue. * @export * @interface Fields */ export interface Fields { /** * The summary description of the linked issue. * @type {string} * @memberof Fields */ readonly summary?: string; /** * The status of the linked issue. * @type {StatusDetails} * @memberof Fields */ readonly status?: StatusDetails; /** * The type of the linked issue. * @type {IssueTypeBean} * @memberof Fields */ readonly issueType?: IssueTypeBean; /** * * @type {IssueTypeBean} * @memberof Fields */ issuetype?: IssueTypeBean; /** * The priority of the linked issue. * @type {Priority} * @memberof Fields */ readonly priority?: Priority; /** * The assignee of the linked issue. * @type {UserDetails} * @memberof Fields */ readonly assignee?: UserDetails; } export declare function FieldsFromJSON(json: any): Fields; export declare function FieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Fields; export declare function FieldsToJSON(value?: Fields): any;