/** * 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. */ /** * Domain Serializer * @export * @interface Domain */ export interface Domain { /** * * @type {number} * @memberof Domain */ readonly id: number; /** * * @type {string} * @memberof Domain */ domain: string; /** * * @type {boolean} * @memberof Domain */ isPrimary?: boolean; /** * * @type {string} * @memberof Domain */ tenant: string; } /** * Check if a given object implements the Domain interface. */ export declare function instanceOfDomain(value: object): value is Domain; export declare function DomainFromJSON(json: any): Domain; export declare function DomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): Domain; export declare function DomainToJSON(json: any): Domain; export declare function DomainToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Domain.d.ts.map