/** * 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 ASN Data * @export * @interface AuthenticatedSessionAsn */ export interface AuthenticatedSessionAsn { /** * * @type {number} * @memberof AuthenticatedSessionAsn */ asn: number; /** * * @type {string} * @memberof AuthenticatedSessionAsn */ asOrg: string | null; /** * * @type {string} * @memberof AuthenticatedSessionAsn */ network: string | null; } /** * Check if a given object implements the AuthenticatedSessionAsn interface. */ export declare function instanceOfAuthenticatedSessionAsn(value: object): value is AuthenticatedSessionAsn; export declare function AuthenticatedSessionAsnFromJSON(json: any): AuthenticatedSessionAsn; export declare function AuthenticatedSessionAsnFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatedSessionAsn; export declare function AuthenticatedSessionAsnToJSON(json: any): AuthenticatedSessionAsn; export declare function AuthenticatedSessionAsnToJSONTyped(value?: AuthenticatedSessionAsn | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatedSessionAsn.d.ts.map