Subversion Repositories SmartDukaan

Rev

Rev 6039 | Rev 6049 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6039 Rev 6048
Line 358... Line 358...
358
    9:RechargeType rechargeType,
358
    9:RechargeType rechargeType,
359
   10:RechargeOrderStatus status,
359
   10:RechargeOrderStatus status,
360
   11:string deviceNumber,
360
   11:string deviceNumber,
361
   12:i64 userId,
361
   12:i64 userId,
362
   13:string userEmailId,
362
   13:string userEmailId,
363
   14:i64 creationTimestamp
363
   14:i64 creationTimestamp,
-
 
364
   15:string spiceTID,
-
 
365
   16:i64 responseTimestamp
364
}
366
}
365
 
367
 
366
struct UserWallet {
368
struct UserWallet {
367
    1:i64 id,
369
    1:i64 id,
368
    2:i64 amount,
370
    2:i64 amount,
Line 1067... Line 1069...
1067
		 
1069
		 
1068
	 bool updateRechargeOrderStatus(1:i64 rechargeOrderId, 2:RechargeOrderStatus rechargeOrderStatus) throws  (1:TransactionServiceException ex);
1070
	 bool updateRechargeOrderStatus(1:i64 rechargeOrderId, 2:RechargeOrderStatus rechargeOrderStatus) throws  (1:TransactionServiceException ex);
1069
	 bool activateRechargeTxn(1:i64 rechargeOrderId) throws  (1:TransactionServiceException ex);
1071
	 bool activateRechargeTxn(1:i64 rechargeOrderId) throws  (1:TransactionServiceException ex);
1070
	 UserWallet getUserWallet(1:i64 userId);
1072
	 UserWallet getUserWallet(1:i64 userId);
1071
	 list<UserWalletHistory> getUserWalletHistory(1:i64 userId);
1073
	 list<UserWalletHistory> getUserWalletHistory(1:i64 userId);
-
 
1074
	 map<i64, string> getServiceProviders(1:RechargeType rechargeType);
-
 
1075
	 i64 getServiceProviderForDevice(1:string deviceNumber);
1072
}
1076
}