/** * 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 { Connector } from './Connector'; import type { StageModeEnum } from './StageModeEnum'; import type { FlowSet } from './FlowSet'; /** * EndpointStage Serializer * @export * @interface EndpointStage */ export interface EndpointStage { /** * * @type {string} * @memberof EndpointStage */ readonly pk: string; /** * * @type {string} * @memberof EndpointStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof EndpointStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof EndpointStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof EndpointStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof EndpointStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof EndpointStage */ readonly flowSet: Array; /** * * @type {string} * @memberof EndpointStage */ connector: string; /** * * @type {Connector} * @memberof EndpointStage */ readonly connectorObj: Connector; /** * * @type {StageModeEnum} * @memberof EndpointStage */ mode?: StageModeEnum; } /** * Check if a given object implements the EndpointStage interface. */ export declare function instanceOfEndpointStage(value: object): value is EndpointStage; export declare function EndpointStageFromJSON(json: any): EndpointStage; export declare function EndpointStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndpointStage; export declare function EndpointStageToJSON(json: any): EndpointStage; export declare function EndpointStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EndpointStage.d.ts.map