/** * 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 DetailedCountryField */ export interface DetailedCountryField { /** * * @type {CountryCodeEnum} * @memberof DetailedCountryField */ code: CountryCodeEnum; /** * * @type {string} * @memberof DetailedCountryField */ name: string; } /** * Check if a given object implements the DetailedCountryField interface. */ export declare function instanceOfDetailedCountryField(value: object): value is DetailedCountryField; export declare function DetailedCountryFieldFromJSON(json: any): DetailedCountryField; export declare function DetailedCountryFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): DetailedCountryField; export declare function DetailedCountryFieldToJSON(json: any): DetailedCountryField; export declare function DetailedCountryFieldToJSONTyped(value?: DetailedCountryField | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DetailedCountryField.d.ts.map