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