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