@@ -43,80 +43,80 @@ class ExtendedUserDataResponse
4343 /**
4444 * Unique ID of the user.
4545 */
46- #[Assert \Type('string ' )]
4746 #[SerializedName('id ' )]
47+ #[Assert \Type('string ' )]
4848 #[Type('string ' )]
4949 protected ?string $ id = null ;
5050
5151 /**
5252 * Nickname of the user.
5353 */
54- #[Assert \Type('string ' )]
5554 #[SerializedName('username ' )]
55+ #[Assert \Type('string ' )]
5656 #[Type('string ' )]
5757 protected ?string $ username = null ;
5858
5959 /**
6060 * The profile picture of the user in data URI scheme.
6161 */
62- #[Assert \Type('string ' )]
6362 #[SerializedName('picture ' )]
63+ #[Assert \Type('string ' )]
6464 #[Type('string ' )]
6565 protected ?string $ picture = null ;
6666
6767 /**
6868 * An introduction of the user.
6969 */
70- #[Assert \Type('string ' )]
7170 #[SerializedName('about ' )]
71+ #[Assert \Type('string ' )]
7272 #[Type('string ' )]
7373 protected ?string $ about = null ;
7474
7575 /**
7676 * A short description about the project the user is currently working on.
7777 */
78- #[Assert \Type('string ' )]
7978 #[SerializedName('currently_working_on ' )]
79+ #[Assert \Type('string ' )]
8080 #[Type('string ' )]
8181 protected ?string $ currently_working_on = null ;
8282
8383 /**
8484 * Amount of projects of the user.
8585 */
86- #[Assert \Type('int ' )]
8786 #[SerializedName('projects ' )]
87+ #[Assert \Type('int ' )]
8888 #[Type('int ' )]
8989 protected ?int $ projects = null ;
9090
9191 /**
9292 * Amount of users that follow this user.
9393 */
94- #[Assert \Type('int ' )]
9594 #[SerializedName('followers ' )]
95+ #[Assert \Type('int ' )]
9696 #[Type('int ' )]
9797 protected ?int $ followers = null ;
9898
9999 /**
100100 * Amount of users followed by this user.
101101 */
102- #[Assert \Type('int ' )]
103102 #[SerializedName('following ' )]
103+ #[Assert \Type('int ' )]
104104 #[Type('int ' )]
105105 protected ?int $ following = null ;
106106
107107 /**
108108 * Ranking score of this user.
109109 */
110- #[Assert \Type('int ' )]
111110 #[SerializedName('ranking_score ' )]
111+ #[Assert \Type('int ' )]
112112 #[Type('int ' )]
113113 protected ?int $ ranking_score = null ;
114114
115115 /**
116116 * EMail of the user.
117117 */
118- #[Assert \Type('string ' )]
119118 #[SerializedName('email ' )]
119+ #[Assert \Type('string ' )]
120120 #[Type('string ' )]
121121 protected ?string $ email = null ;
122122
0 commit comments