/** * 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 { Icon, Status } from './'; /** * The linked item. * @export * @interface RemoteObject */ export interface RemoteObject { [key: string]: object | any; /** * The URL of the item. * @type {string} * @memberof RemoteObject */ url: string; /** * Details of the icon for the item. If no icon is defined, the default link icon is used in Jira. * @type {Icon} * @memberof RemoteObject */ icon?: Icon; /** * The summary details of the item. * @type {string} * @memberof RemoteObject */ summary?: string; /** * The status of the item. * @type {Status} * @memberof RemoteObject */ status?: Status; /** * The title of the item. * @type {string} * @memberof RemoteObject */ title: string; } export declare function RemoteObjectFromJSON(json: any): RemoteObject; export declare function RemoteObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemoteObject; export declare function RemoteObjectToJSON(value?: RemoteObject): any;