/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { NestedResponseAsResponse } from "../definitions/NestedResponseAsResponse"; export interface CreatedIssueAsResponse { /** * The ID of the created issue or subtask. */ id?: string; /** * The key of the created issue or subtask. */ key?: string; /** * The URL of the created issue or subtask. */ self?: string; /** * The response code and messages related to any requested transition. */ transition?: NestedResponseAsResponse; /** * The response code and messages related to any requested watchers. */ watchers?: NestedResponseAsResponse; } //# sourceMappingURL=CreatedIssueAsResponse.d.ts.map