@@ -37,10 +37,10 @@ class UserLegacy(BaseModel):
3737 entities : Dict [str , Any ] = Field (...)
3838 fast_followers_count : StrictInt = Field (...)
3939 favourites_count : StrictInt = Field (...)
40- follow_request_sent : StrictBool = Field (...)
41- followed_by : StrictBool = Field (...)
40+ follow_request_sent : Optional [ StrictBool ] = False
41+ followed_by : Optional [ StrictBool ] = False
4242 followers_count : StrictInt = Field (...)
43- following : StrictBool = Field (...)
43+ following : Optional [ StrictBool ] = False
4444 friends_count : StrictInt = Field (...)
4545 has_custom_timelines : StrictBool = Field (...)
4646 is_translator : StrictBool = Field (...)
@@ -50,15 +50,15 @@ class UserLegacy(BaseModel):
5050 muting : StrictBool = Field (...)
5151 name : StrictStr = Field (...)
5252 normal_followers_count : StrictInt = Field (...)
53- notifications : StrictBool = Field (...)
53+ notifications : Optional [ StrictBool ] = False
5454 pinned_tweet_ids_str : conlist (StrictStr ) = Field (...)
5555 possibly_sensitive : StrictBool = Field (...)
5656 profile_banner_extensions : Optional [Dict [str , Any ]] = None
5757 profile_banner_url : Optional [StrictStr ] = None
5858 profile_image_extensions : Optional [Dict [str , Any ]] = None
5959 profile_image_url_https : StrictStr = Field (...)
6060 profile_interstitial_type : StrictStr = Field (...)
61- protected : StrictBool = Field (...)
61+ protected : Optional [ StrictBool ] = False
6262 screen_name : StrictStr = Field (...)
6363 statuses_count : StrictInt = Field (...)
6464 translator_type : StrictStr = Field (...)
0 commit comments