/** * 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. */ /** * * @export * @interface UserSelfGroups */ export interface UserSelfGroups { /** * * @type {string} * @memberof UserSelfGroups */ readonly name: string; /** * * @type {string} * @memberof UserSelfGroups */ readonly pk: string; } /** * Check if a given object implements the UserSelfGroups interface. */ export declare function instanceOfUserSelfGroups(value: object): value is UserSelfGroups; export declare function UserSelfGroupsFromJSON(json: any): UserSelfGroups; export declare function UserSelfGroupsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSelfGroups; export declare function UserSelfGroupsToJSON(json: any): UserSelfGroups; export declare function UserSelfGroupsToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserSelfGroups.d.ts.map