/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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. */ /** * Get GeoIP Data * @export * @interface AuthenticatedSessionGeoIp */ export interface AuthenticatedSessionGeoIp { /** * * @type {string} * @memberof AuthenticatedSessionGeoIp */ continent: string | null; /** * * @type {string} * @memberof AuthenticatedSessionGeoIp */ country: string | null; /** * * @type {number} * @memberof AuthenticatedSessionGeoIp */ lat: number | null; /** * * @type {number} * @memberof AuthenticatedSessionGeoIp */ _long: number | null; /** * * @type {string} * @memberof AuthenticatedSessionGeoIp */ city: string; } /** * Check if a given object implements the AuthenticatedSessionGeoIp interface. */ export declare function instanceOfAuthenticatedSessionGeoIp(value: object): value is AuthenticatedSessionGeoIp; export declare function AuthenticatedSessionGeoIpFromJSON(json: any): AuthenticatedSessionGeoIp; export declare function AuthenticatedSessionGeoIpFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatedSessionGeoIp; export declare function AuthenticatedSessionGeoIpToJSON(json: any): AuthenticatedSessionGeoIp; export declare function AuthenticatedSessionGeoIpToJSONTyped(value?: AuthenticatedSessionGeoIp | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatedSessionGeoIp.d.ts.map