import { UploadedMedia } from './upload'; /** * Updated with v3/familyAccount/get-by-user/{{user_id}} api call. */ export interface Family { createdAt: string; id: number; name: string; } export interface AddFamilyMember { familyAccountId?: number; isUserAdmin?: boolean; firstName?: string; lastName?: string; gender?: number; birthDate?: string; sports?: Record; email?: string; uploadedMedia?: UploadedMedia; } /** * UpdateFamilyUser need to change when the api will be * work with update family account and not with update uses. */ export interface UpdateFamilyUser { firstName?: string; lastName?: string; gender?: number; birthDate?: string; }