/** * 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. */ /** * ServiceConnection Serializer * @export * @interface ServiceConnection */ export interface ServiceConnection { /** * * @type {string} * @memberof ServiceConnection */ readonly pk: string; /** * * @type {string} * @memberof ServiceConnection */ name: string; /** * If enabled, use the local connection. Required Docker socket/Kubernetes Integration * @type {boolean} * @memberof ServiceConnection */ local?: boolean; /** * Return component used to edit this object * @type {string} * @memberof ServiceConnection */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof ServiceConnection */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof ServiceConnection */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof ServiceConnection */ readonly metaModelName: string; } /** * Check if a given object implements the ServiceConnection interface. */ export declare function instanceOfServiceConnection(value: object): value is ServiceConnection; export declare function ServiceConnectionFromJSON(json: any): ServiceConnection; export declare function ServiceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceConnection; export declare function ServiceConnectionToJSON(json: any): ServiceConnection; export declare function ServiceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ServiceConnection.d.ts.map