type Phone = {
    id: number;
    type: number;
    country_code: string;
    number: string;
    is_primary: number;
    status: number;
    verification_status: number;
    original_source_id: string;
    server_date: string;
    date_utc: string;
    client_date: string;
    update_date_utc: string;
    custom_field: Record<string, unknown>;
};
export type { Phone };
