/** * 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. */ /** * SCIMSource Serializer * @export * @interface SCIMSourceRequest */ export interface SCIMSourceRequest { /** * Source's display Name. * @type {string} * @memberof SCIMSourceRequest */ name: string; /** * Internal source name, used in URLs. * @type {string} * @memberof SCIMSourceRequest */ slug: string; /** * * @type {boolean} * @memberof SCIMSourceRequest */ enabled?: boolean; /** * * @type {Array} * @memberof SCIMSourceRequest */ userPropertyMappings?: Array; /** * * @type {Array} * @memberof SCIMSourceRequest */ groupPropertyMappings?: Array; /** * * @type {string} * @memberof SCIMSourceRequest */ userPathTemplate?: string; } /** * Check if a given object implements the SCIMSourceRequest interface. */ export declare function instanceOfSCIMSourceRequest(value: object): value is SCIMSourceRequest; export declare function SCIMSourceRequestFromJSON(json: any): SCIMSourceRequest; export declare function SCIMSourceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourceRequest; export declare function SCIMSourceRequestToJSON(json: any): SCIMSourceRequest; export declare function SCIMSourceRequestToJSONTyped(value?: SCIMSourceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SCIMSourceRequest.d.ts.map