/** * 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 { UserGroup } from './UserGroup'; /** * SCIMSourceGroup Serializer * @export * @interface SCIMSourceGroup */ export interface SCIMSourceGroup { /** * * @type {string} * @memberof SCIMSourceGroup */ id: string; /** * * @type {string} * @memberof SCIMSourceGroup */ group: string; /** * * @type {UserGroup} * @memberof SCIMSourceGroup */ readonly groupObj: UserGroup; /** * * @type {string} * @memberof SCIMSourceGroup */ source: string; /** * * @type {{ [key: string]: any; }} * @memberof SCIMSourceGroup */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the SCIMSourceGroup interface. */ export declare function instanceOfSCIMSourceGroup(value: object): value is SCIMSourceGroup; export declare function SCIMSourceGroupFromJSON(json: any): SCIMSourceGroup; export declare function SCIMSourceGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourceGroup; export declare function SCIMSourceGroupToJSON(json: any): SCIMSourceGroup; export declare function SCIMSourceGroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SCIMSourceGroup.d.ts.map