Subversion Repositories SmartDukaan

Rev

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

Rev 1628 Rev 1731
Line 107... Line 107...
107
	/**
107
	/**
108
	* mark payment failed and store parameters
108
	* mark payment failed and store parameters
109
	
109
	
110
	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)
110
	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)
111
	*/
111
	*/
112
	
112
		
113
	/**
-
 
114
	Returns the maximum amount of a single payment.
-
 
115
	*/
-
 
116
	double getMaxPaymentAmount(),
-
 
117
	
-
 
118
	/**
113
	/**
119
	Returns the minimum amount of a single payment.
114
	Returns the minimum and maximum amounts among successful payments.
-
 
115
	List contains two double values, first minimum and second maximum amount.
120
	*/
116
	*/
121
	double getMinPaymentAmount(),
117
	list<double> getSuccessfulPaymentsAmountRange()
122
	
-
 
123
	
-
 
124
}
118
}
125
119