/** * 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 { CountryCodeEnum } from './CountryCodeEnum'; /** * GeoIP Policy Serializer * @export * @interface GeoIPPolicyRequest */ export interface GeoIPPolicyRequest { /** * * @type {string} * @memberof GeoIPPolicyRequest */ name: string; /** * When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. * @type {boolean} * @memberof GeoIPPolicyRequest */ executionLogging?: boolean; /** * * @type {Array} * @memberof GeoIPPolicyRequest */ asns?: Array; /** * * @type {Array} * @memberof GeoIPPolicyRequest */ countries: Array; /** * * @type {boolean} * @memberof GeoIPPolicyRequest */ checkHistoryDistance?: boolean; /** * * @type {number} * @memberof GeoIPPolicyRequest */ historyMaxDistanceKm?: number; /** * * @type {number} * @memberof GeoIPPolicyRequest */ distanceToleranceKm?: number; /** * * @type {number} * @memberof GeoIPPolicyRequest */ historyLoginCount?: number; /** * * @type {boolean} * @memberof GeoIPPolicyRequest */ checkImpossibleTravel?: boolean; /** * * @type {number} * @memberof GeoIPPolicyRequest */ impossibleToleranceKm?: number; } /** * Check if a given object implements the GeoIPPolicyRequest interface. */ export declare function instanceOfGeoIPPolicyRequest(value: object): value is GeoIPPolicyRequest; export declare function GeoIPPolicyRequestFromJSON(json: any): GeoIPPolicyRequest; export declare function GeoIPPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeoIPPolicyRequest; export declare function GeoIPPolicyRequestToJSON(json: any): GeoIPPolicyRequest; export declare function GeoIPPolicyRequestToJSONTyped(value?: GeoIPPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GeoIPPolicyRequest.d.ts.map