/** * 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 DomainRequest */ export interface DomainRequest { /** * * @type {string} * @memberof DomainRequest */ domain: string; /** * * @type {boolean} * @memberof DomainRequest */ isPrimary?: boolean; /** * * @type {string} * @memberof DomainRequest */ tenant: string; } /** * Check if a given object implements the DomainRequest interface. */ export declare function instanceOfDomainRequest(value: object): value is DomainRequest; export declare function DomainRequestFromJSON(json: any): DomainRequest; export declare function DomainRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainRequest; export declare function DomainRequestToJSON(json: any): DomainRequest; export declare function DomainRequestToJSONTyped(value?: DomainRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DomainRequest.d.ts.map