/** * 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. */ import type { AuthModeEnum } from './AuthModeEnum'; import type { ProtocolEnum } from './ProtocolEnum'; /** * Endpoint Serializer * @export * @interface PatchedEndpointRequest */ export interface PatchedEndpointRequest { /** * * @type {string} * @memberof PatchedEndpointRequest */ name?: string; /** * * @type {number} * @memberof PatchedEndpointRequest */ provider?: number; /** * * @type {ProtocolEnum} * @memberof PatchedEndpointRequest */ protocol?: ProtocolEnum; /** * * @type {string} * @memberof PatchedEndpointRequest */ host?: string; /** * * @type {{ [key: string]: any; }} * @memberof PatchedEndpointRequest */ settings?: { [key: string]: any; }; /** * * @type {Array} * @memberof PatchedEndpointRequest */ propertyMappings?: Array; /** * * @type {AuthModeEnum} * @memberof PatchedEndpointRequest */ authMode?: AuthModeEnum; /** * * @type {number} * @memberof PatchedEndpointRequest */ maximumConnections?: number; } /** * Check if a given object implements the PatchedEndpointRequest interface. */ export declare function instanceOfPatchedEndpointRequest(value: object): value is PatchedEndpointRequest; export declare function PatchedEndpointRequestFromJSON(json: any): PatchedEndpointRequest; export declare function PatchedEndpointRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedEndpointRequest; export declare function PatchedEndpointRequestToJSON(json: any): PatchedEndpointRequest; export declare function PatchedEndpointRequestToJSONTyped(value?: PatchedEndpointRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedEndpointRequest.d.ts.map