/** * 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 { NestedResponse } from './'; /** * Details about a created issue or subtask. * @export * @interface CreatedIssue */ export interface CreatedIssue { /** * The key of the created issue or subtask. * @type {string} * @memberof CreatedIssue */ readonly key?: string; /** * The response code and messages related to any requested transition. * @type {NestedResponse} * @memberof CreatedIssue */ readonly transition?: NestedResponse; /** * The URL of the created issue or subtask. * @type {string} * @memberof CreatedIssue */ readonly self?: string; /** * The ID of the created issue or subtask. * @type {string} * @memberof CreatedIssue */ readonly id?: string; } export declare function CreatedIssueFromJSON(json: any): CreatedIssue; export declare function CreatedIssueFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatedIssue; export declare function CreatedIssueToJSON(value?: CreatedIssue): any;