/** * 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 PatchedGeoIPPolicyRequest */ export interface PatchedGeoIPPolicyRequest { /** * * @type {string} * @memberof PatchedGeoIPPolicyRequest */ 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 PatchedGeoIPPolicyRequest */ executionLogging?: boolean; /** * * @type {Array} * @memberof PatchedGeoIPPolicyRequest */ asns?: Array; /** * * @type {Array} * @memberof PatchedGeoIPPolicyRequest */ countries?: Array; /** * * @type {boolean} * @memberof PatchedGeoIPPolicyRequest */ checkHistoryDistance?: boolean; /** * * @type {number} * @memberof PatchedGeoIPPolicyRequest */ historyMaxDistanceKm?: number; /** * * @type {number} * @memberof PatchedGeoIPPolicyRequest */ distanceToleranceKm?: number; /** * * @type {number} * @memberof PatchedGeoIPPolicyRequest */ historyLoginCount?: number; /** * * @type {boolean} * @memberof PatchedGeoIPPolicyRequest */ checkImpossibleTravel?: boolean; /** * * @type {number} * @memberof PatchedGeoIPPolicyRequest */ impossibleToleranceKm?: number; } /** * Check if a given object implements the PatchedGeoIPPolicyRequest interface. */ export declare function instanceOfPatchedGeoIPPolicyRequest(value: object): value is PatchedGeoIPPolicyRequest; export declare function PatchedGeoIPPolicyRequestFromJSON(json: any): PatchedGeoIPPolicyRequest; export declare function PatchedGeoIPPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedGeoIPPolicyRequest; export declare function PatchedGeoIPPolicyRequestToJSON(json: any): PatchedGeoIPPolicyRequest; export declare function PatchedGeoIPPolicyRequestToJSONTyped(value?: PatchedGeoIPPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedGeoIPPolicyRequest.d.ts.map