Skip to content

1.0.2

Latest

Choose a tag to compare

@vignaraj-g-23606 vignaraj-g-23606 released this 13 Feb 07:38
· 3 commits to main since this release

Mandates are now supported in the iOS SDK. If you are upgrading from any version lower than 1.0.2, ensure to update the signature of ZohoPaymentsCheckoutDelegate.

Previous Versions:

public protocol ZohoPaymentsCheckoutDelegate 
{  
	func onPaymentSuccess(paymentId: String, signature: String) 
	func onPaymentFailure(code: String, message: String)  
}

Version 1.0.2.

public protocol ZohoPaymentsCheckoutDelegate 
{
	func onPaymentSuccess(object: ZohoPayments.PaymentSuccessObject)
	func onPaymentFailure(object: ZohoPayments.PaymentFailureObject)
}