/** * 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 EndpointStageRequest */ export interface EndpointStageRequest { /** * * @type {string} * @memberof EndpointStageRequest */ name: string; /** * * @type {string} * @memberof EndpointStageRequest */ connector: string; /** * * @type {StageModeEnum} * @memberof EndpointStageRequest */ mode?: StageModeEnum; } /** * Check if a given object implements the EndpointStageRequest interface. */ export declare function instanceOfEndpointStageRequest(value: object): value is EndpointStageRequest; export declare function EndpointStageRequestFromJSON(json: any): EndpointStageRequest; export declare function EndpointStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointStageRequest; export declare function EndpointStageRequestToJSON(json: any): EndpointStageRequest; export declare function EndpointStageRequestToJSONTyped(value?: EndpointStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointStageRequest.d.ts.map