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)
}