/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; import type { DetailedCountryField } from './DetailedCountryField'; import { DetailedCountryFieldFromJSON, DetailedCountryFieldFromJSONTyped, DetailedCountryFieldToJSON, DetailedCountryFieldToJSONTyped, } from './DetailedCountryField'; import type { CountryCodeEnum } from './CountryCodeEnum'; import { CountryCodeEnumFromJSON, CountryCodeEnumFromJSONTyped, CountryCodeEnumToJSON, CountryCodeEnumToJSONTyped, } from './CountryCodeEnum'; /** * GeoIP Policy Serializer * @export * @interface GeoIPPolicy */ export interface GeoIPPolicy { /** * * @type {string} * @memberof GeoIPPolicy */ readonly pk: string; /** * * @type {string} * @memberof GeoIPPolicy */ 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 GeoIPPolicy */ executionLogging?: boolean; /** * Get object component so that we know how to edit the object * @type {string} * @memberof GeoIPPolicy */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof GeoIPPolicy */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof GeoIPPolicy */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof GeoIPPolicy */ readonly metaModelName: string; /** * Return objects policy is bound to * @type {number} * @memberof GeoIPPolicy */ readonly boundTo: number; /** * * @type {Array} * @memberof GeoIPPolicy */ asns?: Array; /** * * @type {Array} * @memberof GeoIPPolicy */ countries: Array; /** * * @type {Array} * @memberof GeoIPPolicy */ readonly countriesObj: Array; /** * * @type {boolean} * @memberof GeoIPPolicy */ checkHistoryDistance?: boolean; /** * * @type {number} * @memberof GeoIPPolicy */ historyMaxDistanceKm?: number; /** * * @type {number} * @memberof GeoIPPolicy */ distanceToleranceKm?: number; /** * * @type {number} * @memberof GeoIPPolicy */ historyLoginCount?: number; /** * * @type {boolean} * @memberof GeoIPPolicy */ checkImpossibleTravel?: boolean; /** * * @type {number} * @memberof GeoIPPolicy */ impossibleToleranceKm?: number; } /** * Check if a given object implements the GeoIPPolicy interface. */ export function instanceOfGeoIPPolicy(value: object): value is GeoIPPolicy { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; if (!('boundTo' in value) || value['boundTo'] === undefined) return false; if (!('countries' in value) || value['countries'] === undefined) return false; if (!('countriesObj' in value) || value['countriesObj'] === undefined) return false; return true; } export function GeoIPPolicyFromJSON(json: any): GeoIPPolicy { return GeoIPPolicyFromJSONTyped(json, false); } export function GeoIPPolicyFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeoIPPolicy { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'executionLogging': json['execution_logging'] == null ? undefined : json['execution_logging'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], 'boundTo': json['bound_to'], 'asns': json['asns'] == null ? undefined : json['asns'], 'countries': ((json['countries'] as Array).map(CountryCodeEnumFromJSON)), 'countriesObj': ((json['countries_obj'] as Array).map(DetailedCountryFieldFromJSON)), 'checkHistoryDistance': json['check_history_distance'] == null ? undefined : json['check_history_distance'], 'historyMaxDistanceKm': json['history_max_distance_km'] == null ? undefined : json['history_max_distance_km'], 'distanceToleranceKm': json['distance_tolerance_km'] == null ? undefined : json['distance_tolerance_km'], 'historyLoginCount': json['history_login_count'] == null ? undefined : json['history_login_count'], 'checkImpossibleTravel': json['check_impossible_travel'] == null ? undefined : json['check_impossible_travel'], 'impossibleToleranceKm': json['impossible_tolerance_km'] == null ? undefined : json['impossible_tolerance_km'], }; } export function GeoIPPolicyToJSON(json: any): GeoIPPolicy { return GeoIPPolicyToJSONTyped(json, false); } export function GeoIPPolicyToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'execution_logging': value['executionLogging'], 'asns': value['asns'], 'countries': ((value['countries'] as Array).map(CountryCodeEnumToJSON)), 'check_history_distance': value['checkHistoryDistance'], 'history_max_distance_km': value['historyMaxDistanceKm'], 'distance_tolerance_km': value['distanceToleranceKm'], 'history_login_count': value['historyLoginCount'], 'check_impossible_travel': value['checkImpossibleTravel'], 'impossible_tolerance_km': value['impossibleToleranceKm'], }; }