/** * 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. */ /** * Get GeoIP Data * @export * @interface AuthenticatedSessionGeoIp */ export interface AuthenticatedSessionGeoIp { /** * * @type {string} * @memberof AuthenticatedSessionGeoIp */ continent: string; /** * * @type {string} * @memberof AuthenticatedSessionGeoIp */ country: string; /** * * @type {number} * @memberof AuthenticatedSessionGeoIp */ lat: number; /** * * @type {number} * @memberof AuthenticatedSessionGeoIp */ _long: number; /** * * @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