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