/** * 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. */ /** * SCIMSourceGroup Serializer * @export * @interface SCIMSourceGroupRequest */ export interface SCIMSourceGroupRequest { /** * * @type {string} * @memberof SCIMSourceGroupRequest */ id: string; /** * * @type {string} * @memberof SCIMSourceGroupRequest */ group: string; /** * * @type {string} * @memberof SCIMSourceGroupRequest */ source: string; /** * * @type {{ [key: string]: any; }} * @memberof SCIMSourceGroupRequest */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the SCIMSourceGroupRequest interface. */ export declare function instanceOfSCIMSourceGroupRequest(value: object): value is SCIMSourceGroupRequest; export declare function SCIMSourceGroupRequestFromJSON(json: any): SCIMSourceGroupRequest; export declare function SCIMSourceGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourceGroupRequest; export declare function SCIMSourceGroupRequestToJSON(json: any): SCIMSourceGroupRequest; export declare function SCIMSourceGroupRequestToJSONTyped(value?: SCIMSourceGroupRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SCIMSourceGroupRequest.d.ts.map