1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
| class GqlUserLoginRequestEntity { GqlUserLoginRequestEntity({ this.identifier, this.password, });
String identifier; String password;
factory GqlUserLoginRequestEntity.fromJson(Map<String, dynamic> json) => GqlUserLoginRequestEntity( identifier: json["identifier"], password: json["password"], );
Map<String, dynamic> toJson() => { "identifier": identifier, "password": password, }; }
class GqlUserRegisterRequestEntity { GqlUserRegisterRequestEntity({ this.username, this.email, this.password, });
String username; String email; String password;
factory GqlUserRegisterRequestEntity.fromJson(Map<String, dynamic> json) => GqlUserRegisterRequestEntity( username: json["username"], email: json["email"], password: json["password"], );
Map<String, dynamic> toJson() => { "username": username, "email": email, "password": password, }; }
class GqlUserLoginResponseEntity { GqlUserLoginResponseEntity({ this.jwt, this.user, });
String jwt; UserEntity user;
factory GqlUserLoginResponseEntity.fromJson(Map<String, dynamic> json) => GqlUserLoginResponseEntity( jwt: json["jwt"], user: UserEntity.fromJson(json["user"]), );
Map<String, dynamic> toJson() => { "jwt": jwt, "user": user.toJson(), }; }
class GqlUserRegisterResponseEntity { GqlUserRegisterResponseEntity({ this.jwt, this.user, });
String jwt; UserEntity user;
factory GqlUserRegisterResponseEntity.fromJson(Map<String, dynamic> json) => GqlUserRegisterResponseEntity( jwt: json["jwt"], user: UserEntity.fromJson(json["user"]), );
Map<String, dynamic> toJson() => { "jwt": jwt, "user": user.toJson(), }; }
class UserEntity { UserEntity({ this.id, this.username, this.email, this.role, this.blocked, this.confirmed, });
String id; String username; String email; RoleEntity role; bool blocked; bool confirmed;
factory UserEntity.fromJson(Map<String, dynamic> json) => UserEntity( id: json["id"], username: json["username"], email: json["email"], role: RoleEntity.fromJson(json["role"]), blocked: json["blocked"], confirmed: json["confirmed"], );
Map<String, dynamic> toJson() => { "id": id, "username": username, "email": email, "role": role.toJson(), "blocked": blocked, "confirmed": confirmed, }; }
class RoleEntity { RoleEntity({ this.id, this.name, this.description, this.type, });
String id; String name; String description; String type;
factory RoleEntity.fromJson(Map<String, dynamic> json) => RoleEntity( id: json["id"], name: json["name"], description: json["description"], type: json["type"], );
Map<String, dynamic> toJson() => { "id": id, "name": name, "description": description, "type": type, }; }
|