File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class Location(BaseModel):
3838 _fields : t .Optional [LocationFields ] = Field (
3939 None ,
4040 alias = "fields" ,
41- description = "other location attributes like country, country_code etc" ,
41+ description = "Other location attributes like country, country_code etc" ,
4242 )
4343
4444
@@ -193,11 +193,11 @@ class Url(BaseModel):
193193
194194
195195class ProfileInfo (BaseModel ):
196- full_name : t .Optional [str ]
197- first_name : t .Optional [str ]
198- last_name : t .Optional [str ]
199- email : t .Optional [str ]
200- phone : t .Optional [str ]
196+ full_name : t .Optional [str ] = Field ( None , description = "Profile full name" )
197+ first_name : t .Optional [str ] = Field ( None , description = "Profile first name" )
198+ last_name : t .Optional [str ] = Field ( None , description = "Profile last name" )
199+ email : t .Optional [str ] = Field ( None , description = "Profile email" )
200+ phone : t .Optional [str ] = Field ( None , description = "Profile phone number" )
201201 date_birth : t .Optional [str ] = Field (None , description = "Profile date of birth" )
202202 location : t .Optional [Location ] = Field (None , description = "Profile location object" )
203203 urls : t .Optional [t .List [Url ]] = Field (
You can’t perform that action at this time.
0 commit comments