| Contact | Donate | Imprint |
| RiderAccount | PlatformUserModule | Uber |
| Property | Type | Entity | Reference | Module |
| (1) DefaultPaymentMethod | LONG | RiderAccount | ||
| (2) Notes | STRING | RiderAccount | ||
| (3) PlatformUser | LONG | RiderAccount | PlatformUser | PlatformUserModule |
| (4) Rating | DOUBLE | RiderAccount |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /rideraccount/platformuser/{id} | findAllRiderAccountOfPlatformUser(id) | PlatformUserModule | GET | PlatformUser RiderAccount |
| (2) /rideraccount | insertRiderAccount(rideraccount) | PlatformUserModule | POST | RiderAccount |
| (3) /rideraccount/{id} | findRiderAccountById(id) | PlatformUserModule | GET | RiderAccount |
| (4) /rideraccount | findAllRiderAccount() | PlatformUserModule | GET | RiderAccount |
| (5) /rideraccount/{id} | deleteRiderAccountById(id) | PlatformUserModule | DELETE | RiderAccount |
| (6) /rideraccount/{id} | updateRiderAccountById(rideraccount) | PlatformUserModule | PUT | RiderAccount |
| (7) /trip/rideraccount/{id} | findAllTripOfRiderAccount(id) | VehicleModule | GET | RiderAccount Trip |
Example:
final RiderAccount rideraccount = (RiderAccount) invokeModule(PLATFORM_USER_MODULE + "/rideraccount/" + id, RiderAccount.class);| Contact | Donate | Imprint |