/** Details of the identifiers for a created or updated remote issue link. */
export interface RemoteIssueLinkIdentifies {
  /** The ID of the remote issue link, such as the ID of the item on the remote system. */
  id?: number;
  /** The URL of the remote issue link. */
  self?: string;
}
