/** * 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. */ /** * response of the flow's diagram action * @export * @interface FlowDiagram */ export interface FlowDiagram { /** * * @type {string} * @memberof FlowDiagram */ readonly diagram: string; } /** * Check if a given object implements the FlowDiagram interface. */ export declare function instanceOfFlowDiagram(value: object): value is FlowDiagram; export declare function FlowDiagramFromJSON(json: any): FlowDiagram; export declare function FlowDiagramFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowDiagram; export declare function FlowDiagramToJSON(json: any): FlowDiagram; export declare function FlowDiagramToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FlowDiagram.d.ts.map