/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { IconAsResponse } from "../definitions/IconAsResponse"; import { StatusAsResponse } from "../definitions/StatusAsResponse"; export interface RemoteObjectAsResponse { /** * Details of the icon for the item. If no icon is defined, the default link icon is used in Jira. */ icon?: IconAsResponse; /** * The status of the item. */ status?: StatusAsResponse; /** * The summary details of the item. */ summary?: string; /** * The title of the item. */ title: string; /** * The URL of the item. */ url: string; [x: string]: any; } //# sourceMappingURL=RemoteObjectAsResponse.d.ts.map