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