/** * 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'; /** * SCIMProviderGroup Serializer * @export * @interface SCIMProviderGroup */ export interface SCIMProviderGroup { /** * * @type {string} * @memberof SCIMProviderGroup */ readonly id: string; /** * * @type {string} * @memberof SCIMProviderGroup */ scimId: string; /** * * @type {string} * @memberof SCIMProviderGroup */ group: string; /** * * @type {UserGroup} * @memberof SCIMProviderGroup */ readonly groupObj: UserGroup; /** * * @type {number} * @memberof SCIMProviderGroup */ provider: number; /** * * @type {{ [key: string]: any; }} * @memberof SCIMProviderGroup */ readonly attributes: { [key: string]: any; }; } /** * Check if a given object implements the SCIMProviderGroup interface. */ export declare function instanceOfSCIMProviderGroup(value: object): value is SCIMProviderGroup; export declare function SCIMProviderGroupFromJSON(json: any): SCIMProviderGroup; export declare function SCIMProviderGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMProviderGroup; export declare function SCIMProviderGroupToJSON(json: any): SCIMProviderGroup; export declare function SCIMProviderGroupToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SCIMProviderGroup.d.ts.map