/**
 * Generated by orval v7.9.0 🍺
 * Do not edit manually.
 * HELIXZ helixZypher APIs
 * HelixZypher is a custom-built authentication server by Helixz Solutions, developed using Spring Boot with JWT and OAuth2 support. It provides a secure, scalable, and flexible foundation for managing user authentication and authorization across modern applications and microservices.
 * OpenAPI spec version: 1.0.0
 */
import type { Tsid } from "./tsid";
import type { UserInfo } from "./userInfo";
import type { Role } from "./role";
export interface User {
    id?: Tsid;
    status?: string;
    userType?: string;
    provider?: string;
    userInfo?: UserInfo;
    roles?: Role[];
    companyId?: Tsid;
}
