Subversion Repositories SmartDukaan

Rev

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

Rev 6077 Rev 6094
Line 361... Line 361...
361
   11:string deviceNumber,
361
   11:string deviceNumber,
362
   12:i64 userId,
362
   12:i64 userId,
363
   13:string userEmailId,
363
   13:string userEmailId,
364
   14:i64 creationTimestamp,
364
   14:i64 creationTimestamp,
365
   15:string spiceTID,
365
   15:string spiceTID,
366
   16:i64 responseTimestamp
366
   16:i64 responseTimestamp,
-
 
367
   17:string description
367
}
368
}
368
 
369
 
369
struct UserWallet {
370
struct UserWallet {
370
    1:i64 id,
371
    1:i64 id,
371
    2:i64 amount,
372
    2:i64 amount,
Line 1076... Line 1077...
1076
	 Returns a recharge order for a given transactionId
1077
	 Returns a recharge order for a given transactionId
1077
	 */
1078
	 */
1078
	 RechargeOrder getRechargeOrdersForTransaction(1:i64 txnId) throws (1:TransactionServiceException ex);
1079
	 RechargeOrder getRechargeOrdersForTransaction(1:i64 txnId) throws (1:TransactionServiceException ex);
1079
	 map<i64, string> getServiceProviders(1:RechargeType rechargeType);
1080
	 map<i64, string> getServiceProviders(1:RechargeType rechargeType);
1080
	 i64 getServiceProviderForDevice(1:RechargeType rechargeType, 2:string deviceNumber);
1081
	 i64 getServiceProviderForDevice(1:RechargeType rechargeType, 2:string deviceNumber);
-
 
1082
	 list<RechargeOrder> getRechargeOrdersForDevice(1:string deviceNumber);
-
 
1083
	 void addAmountToWallet(1:i64 userId, 2:i64 orderId, 3:i64 amount);
1081
}
1084
}