@@ -35,30 +35,29 @@ class User : public oatpp::DTO {
3535
3636 DTO_INIT (User, DTO /* Extends */ )
3737
38- DTO_FIELD (oatpp::Int64, Id );
39- DTO_FIELD (oatpp::Boolean, IdIsSet );
40- DTO_FIELD (oatpp::String, Username );
41- DTO_FIELD (oatpp::Boolean, UsernameIsSet );
42- DTO_FIELD (oatpp::String, FirstName );
43- DTO_FIELD (oatpp::Boolean, FirstNameIsSet );
44- DTO_FIELD (oatpp::String, LastName );
45- DTO_FIELD (oatpp::Boolean, LastNameIsSet );
46- DTO_FIELD (oatpp::String, Email );
47- DTO_FIELD (oatpp::Boolean, EmailIsSet );
48- DTO_FIELD (oatpp::String, Password );
49- DTO_FIELD (oatpp::Boolean, PasswordIsSet );
50- DTO_FIELD (oatpp::String, Phone );
51- DTO_FIELD (oatpp::Boolean, PhoneIsSet );
52- DTO_FIELD (oatpp::Int32, UserStatus );
53- DTO_FIELD (oatpp::Boolean, UserStatusIsSet );
38+ DTO_FIELD (oatpp::Int64, id );
39+ DTO_FIELD (oatpp::Boolean, idIsSet );
40+ DTO_FIELD (oatpp::String, username );
41+ DTO_FIELD (oatpp::Boolean, usernameIsSet );
42+ DTO_FIELD (oatpp::String, firstName );
43+ DTO_FIELD (oatpp::Boolean, firstNameIsSet );
44+ DTO_FIELD (oatpp::String, lastName );
45+ DTO_FIELD (oatpp::Boolean, lastNameIsSet );
46+ DTO_FIELD (oatpp::String, email );
47+ DTO_FIELD (oatpp::Boolean, emailIsSet );
48+ DTO_FIELD (oatpp::String, password );
49+ DTO_FIELD (oatpp::Boolean, passwordIsSet );
50+ DTO_FIELD (oatpp::String, phone );
51+ DTO_FIELD (oatpp::Boolean, phoneIsSet );
52+ DTO_FIELD (oatpp::Int32, userStatus );
53+ DTO_FIELD (oatpp::Boolean, userStatusIsSet );
5454
55-
56-
5755};
5856
5957/* End DTO code-generation */
6058#include OATPP_CODEGEN_END(DTO)
6159
60+
6261} // namespace org::openapitools::server::model
6362
6463#endif /* User_H_ */
0 commit comments