export interface UserBasePayload { user_id: string; first_name?: string | null; last_name?: string | null; } export interface UserPayload extends UserBasePayload { email: string; address_id?: string | null; birthday?: string | null; company_id?: string | null; country_code?: string | null; create_time?: string | null; gender?: string | null; is_deleted?: boolean; is_phone_verified?: boolean; is_potential_fraud?: boolean; last_seen_time?: string | null; middle_name?: string | null; nationality_country_code?: string | null; phone?: string | null; photo?: PhotoPayload | null; role_at_company?: string | null; ssn?: string | null; sync_token?: string | null; time_zone?: string | null; update_time?: string | null; } export interface PhotoPayload { original?: string | null; }