/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for user information. */ export type UserInfo = { user_id: number; username: string | null; email: string | null; name: string; is_active?: boolean; last_active?: string; date_joined?: string; /** * Total amount the user has spent across all agents, in USD. May be slightly higher than the sum of the per-agent cost_usd values. */ total_agent_cost_usd?: string | null; };