import { FieldsAsResponse } from "../definitions/FieldsAsResponse"; export interface LinkedIssueAsResponse { /** * The ID of an issue. Required if `key` isn't provided. */ id?: string; /** * The key of an issue. Required if `id` isn't provided. */ key?: string; /** * The URL of the issue. */ self?: string; /** * The fields associated with the issue. */ fields?: FieldsAsResponse; } //# sourceMappingURL=LinkedIssueAsResponse.d.ts.map