/** * 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. */ /** * Serializer for stages which can be selected by users * @export * @interface SelectableStage */ export interface SelectableStage { /** * * @type {string} * @memberof SelectableStage */ pk: string; /** * * @type {string} * @memberof SelectableStage */ name: string; /** * * @type {string} * @memberof SelectableStage */ verboseName: string; /** * * @type {string} * @memberof SelectableStage */ metaModelName: string; } /** * Check if a given object implements the SelectableStage interface. */ export declare function instanceOfSelectableStage(value: object): value is SelectableStage; export declare function SelectableStageFromJSON(json: any): SelectableStage; export declare function SelectableStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): SelectableStage; export declare function SelectableStageToJSON(json: any): SelectableStage; export declare function SelectableStageToJSONTyped(value?: SelectableStage | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SelectableStage.d.ts.map