/** * 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 { LDAPOutpostConfig } from './LDAPOutpostConfig'; /** * * @export * @interface PaginatedLDAPOutpostConfigList */ export interface PaginatedLDAPOutpostConfigList { /** * * @type {Pagination} * @memberof PaginatedLDAPOutpostConfigList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedLDAPOutpostConfigList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedLDAPOutpostConfigList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedLDAPOutpostConfigList interface. */ export declare function instanceOfPaginatedLDAPOutpostConfigList(value: object): value is PaginatedLDAPOutpostConfigList; export declare function PaginatedLDAPOutpostConfigListFromJSON(json: any): PaginatedLDAPOutpostConfigList; export declare function PaginatedLDAPOutpostConfigListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLDAPOutpostConfigList; export declare function PaginatedLDAPOutpostConfigListToJSON(json: any): PaginatedLDAPOutpostConfigList; export declare function PaginatedLDAPOutpostConfigListToJSONTyped(value?: PaginatedLDAPOutpostConfigList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedLDAPOutpostConfigList.d.ts.map