/** * 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. */ import type { Pagination } from './Pagination'; import type { License } from './License'; /** * * @export * @interface PaginatedLicenseList */ export interface PaginatedLicenseList { /** * * @type {Pagination} * @memberof PaginatedLicenseList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedLicenseList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedLicenseList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedLicenseList interface. */ export declare function instanceOfPaginatedLicenseList(value: object): value is PaginatedLicenseList; export declare function PaginatedLicenseListFromJSON(json: any): PaginatedLicenseList; export declare function PaginatedLicenseListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLicenseList; export declare function PaginatedLicenseListToJSON(json: any): PaginatedLicenseList; export declare function PaginatedLicenseListToJSONTyped(value?: PaginatedLicenseList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedLicenseList.d.ts.map