This commit is contained in:
Hamza-Ayed
2023-08-28 19:13:50 +03:00
parent 63770619d6
commit 069ab52a83
63 changed files with 621 additions and 104 deletions

View File

@@ -14,4 +14,6 @@ class BoxName {
static const String cardHolderName = "cardHolderName";
static const String expiryDate = "expiryDate";
static const String cvvCode = "cvvCode";
static const String passengerWalletDetails = "passengerWalletDetails";
static const String passengerWalletTotal = "passengerWalletTotal";
}

View File

@@ -7,7 +7,24 @@ class AppLink {
static const String getTokens = "$server/ride/firebase/get.php";
static const String addTokens = "$server/ride/firebase/add.php";
//=======================ride===================
//=======================Wallet===================
static const String wallet = '$server/ride/passengerWallet/';
static const String getAllPassengerTransaction =
"$wallet/getAllPassengerTransaction.php";
static const String getWalletByPassenger = "$wallet/getWalletByPassenger.php";
static const String getPassengersWallet = "$wallet/get.php";
static const String addPassengersWallet = "$wallet/add.php";
static const String deletePassengersWallet = "$wallet/delete.php";
static const String updatePassengersWallet = "$wallet/update.php";
//=======================promo===================ride.mobile-app.store/ride/promo/get.php
static const String promo = '$server/ride/promo';
static const String getPassengersPromo = "$promo/get.php";
static const String addPassengersPromo = "$promo/add.php";
static const String deletePassengersPromo = "$promo/delete.php";
static const String updatePassengersPromo = "$promo/update.php";
////=======================ride===================
static const String ride = '$server/ride/';
static const String addCancelRide = "$server/ride/cancelRide/add.php";
static const String cancelRide = "$server/ride/cancelRide/get.php";