/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * License Serializer * @export * @interface License */ export interface License { /** * * @type {string} * @memberof License */ readonly licenseUuid: string; /** * * @type {string} * @memberof License */ readonly name: string; /** * * @type {string} * @memberof License */ key: string; /** * * @type {Date} * @memberof License */ readonly expiry: Date; /** * * @type {number} * @memberof License */ readonly internalUsers: number; /** * * @type {number} * @memberof License */ readonly externalUsers: number; } /** * Check if a given object implements the License interface. */ export declare function instanceOfLicense(value: object): value is License; export declare function LicenseFromJSON(json: any): License; export declare function LicenseFromJSONTyped(json: any, ignoreDiscriminator: boolean): License; export declare function LicenseToJSON(json: any): License; export declare function LicenseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=License.d.ts.map