Subversion Repositories SmartDukaan

Rev

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

Rev 680 Rev 694
Line 95... Line 95...
95
	list<Payment> getPaymentForTxnId(1:i64 txnId) throws (1:PaymentException pe),
95
	list<Payment> getPaymentForTxnId(1:i64 txnId) throws (1:PaymentException pe),
96
	
96
	
97
	/**
97
	/**
98
	* mark payment successful and store parameters
98
	* mark payment successful and store parameters
99
	**/
99
	**/
100
	bool markPaymentSuccessful(1:i64 id, 2:string gatewayPaymentId, 3:string sessionId, 4:string gatewayTxnStatus, 5:string  description, 6:string gatewayTxnId, 7:string authCode, 8:string referenceCode, 9:list<Attribute> attributes) throws (1:PaymentException pe),
100
	bool updatePaymentDetails(1:i64 id, 2:string gatewayPaymentId, 3:string sessionId, 4:string gatewayTxnStatus, 5:string  description, 6:string gatewayTxnId, 7:string authCode, 8:string referenceCode, 9:string errorCode, 10:PaymentStatus  status, 11:list<Attribute> attributes) throws (1:PaymentException pe),
101
	
101
	
102
	/**
102
	/**
103
	* mark payment failed and store parameters
103
	* mark payment failed and store parameters
104
	**/
104
	
105
	bool markPaymentFailed(1:i64 id, 2:string gatewayPaymentId, 3:string sessionId, 4:string gatewayTxnStatus, 5:string description, 6:string errorCode, 7:list<Attribute> attributes )  throws (1:PaymentException pe)
105
	bool markPaymentFailed(1:i64 id, 2:string gatewayPaymentId, 3:string sessionId, 4:string gatewayTxnStatus, 5:string description, 6:string errorCode, 7:list<Attribute> attributes )  throws (1:PaymentException pe)
-
 
106
	*/
106
	
107
	
107
}
108
}
108
109