/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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. */ /** * Partial User Serializer, does not include child relations. * @export * @interface PartialUser */ export interface PartialUser { /** * * @type {number} * @memberof PartialUser */ readonly pk: number; /** * Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. * @type {string} * @memberof PartialUser */ username: string; /** * User's display name. * @type {string} * @memberof PartialUser */ name: string; /** * Designates whether this user should be treated as active. Unselect this instead of deleting accounts. * @type {boolean} * @memberof PartialUser */ isActive?: boolean; /** * * @type {Date} * @memberof PartialUser */ lastLogin?: Date | null; /** * * @type {string} * @memberof PartialUser */ email?: string; /** * * @type {{ [key: string]: any; }} * @memberof PartialUser */ attributes?: { [key: string]: any; }; /** * * @type {string} * @memberof PartialUser */ readonly uid: string; } /** * Check if a given object implements the PartialUser interface. */ export declare function instanceOfPartialUser(value: object): value is PartialUser; export declare function PartialUserFromJSON(json: any): PartialUser; export declare function PartialUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialUser; export declare function PartialUserToJSON(json: any): PartialUser; export declare function PartialUserToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PartialUser.d.ts.map