/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { StageModeEnum } from './StageModeEnum'; /** * EndpointStage Serializer * @export * @interface PatchedEndpointStageRequest */ export interface PatchedEndpointStageRequest { /** * * @type {string} * @memberof PatchedEndpointStageRequest */ name?: string; /** * * @type {string} * @memberof PatchedEndpointStageRequest */ connector?: string; /** * * @type {StageModeEnum} * @memberof PatchedEndpointStageRequest */ mode?: StageModeEnum; } /** * Check if a given object implements the PatchedEndpointStageRequest interface. */ export declare function instanceOfPatchedEndpointStageRequest(value: object): value is PatchedEndpointStageRequest; export declare function PatchedEndpointStageRequestFromJSON(json: any): PatchedEndpointStageRequest; export declare function PatchedEndpointStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedEndpointStageRequest; export declare function PatchedEndpointStageRequestToJSON(json: any): PatchedEndpointStageRequest; export declare function PatchedEndpointStageRequestToJSONTyped(value?: PatchedEndpointStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedEndpointStageRequest.d.ts.map