/** Details about a licensed Jira application. */
export interface LicensedApplication {
  /** The ID of the application. */
  id: string;
  /** The licensing plan. */
  plan: string;
}
