/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface LicensedApplicationAsResponse { /** * The ID of the application. */ id: string; /** * The licensing plan. */ plan: "UNLICENSED" | "FREE" | "PAID"; } //# sourceMappingURL=LicensedApplicationAsResponse.d.ts.map