/** * 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 Service connection state * @export * @interface ServiceConnectionState */ export interface ServiceConnectionState { /** * * @type {boolean} * @memberof ServiceConnectionState */ readonly healthy: boolean; /** * * @type {string} * @memberof ServiceConnectionState */ readonly version: string; } /** * Check if a given object implements the ServiceConnectionState interface. */ export declare function instanceOfServiceConnectionState(value: object): value is ServiceConnectionState; export declare function ServiceConnectionStateFromJSON(json: any): ServiceConnectionState; export declare function ServiceConnectionStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceConnectionState; export declare function ServiceConnectionStateToJSON(json: any): ServiceConnectionState; export declare function ServiceConnectionStateToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ServiceConnectionState.d.ts.map