/** * 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'; /** * * @export * @interface DetailedCountry */ export interface DetailedCountry { /** * * @type {CountryCodeEnum} * @memberof DetailedCountry */ code: CountryCodeEnum; /** * * @type {string} * @memberof DetailedCountry */ name: string; } /** * Check if a given object implements the DetailedCountry interface. */ export declare function instanceOfDetailedCountry(value: object): value is DetailedCountry; export declare function DetailedCountryFromJSON(json: any): DetailedCountry; export declare function DetailedCountryFromJSONTyped(json: any, ignoreDiscriminator: boolean): DetailedCountry; export declare function DetailedCountryToJSON(json: any): DetailedCountry; export declare function DetailedCountryToJSONTyped(value?: DetailedCountry | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DetailedCountry.d.ts.map