Subversion Repositories SmartDukaan

Rev

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

Rev 20929 Rev 20954
Line 561... Line 561...
561
}
561
}
562
 
562
 
563
struct UserWallet {
563
struct UserWallet {
564
    1:i64 id,
564
    1:i64 id,
565
    2:i64 amount,
565
    2:i64 amount,
566
    3:i64 userId   
566
    3:i64 userId,
-
 
567
    4:i64 refundable_amount  
567
}
568
}
568
 
569
 
569
struct UserWalletHistory {
570
struct UserWalletHistory {
570
	1:i64 id,
571
	1:i64 id,
571
    2:i64 walletId,
572
    2:i64 walletId,
Line 2192... Line 2193...
2192
	
2193
	
2193
	i64 createPayment(1:i64 userId, 2:i64 txnId, 3:i32 gatewayId)
2194
	i64 createPayment(1:i64 userId, 2:i64 txnId, 3:i32 gatewayId)
2194
	
2195
	
2195
	double calculatePaymentAmount(1:i64 txnId)
2196
	double calculatePaymentAmount(1:i64 txnId)
2196
	
2197
	
-
 
2198
	list<Order> getBilledOrdersForManifestGen(1:i64 warehouse_id, 2:i64 logistics_provider_id, 3:bool cod)
-
 
2199
	
2197
}
2200
}