unblock Payment Method With
suspend fun unblockPaymentMethodWith(paymentMethodId: String): Pair<FrameObjects.PaymentMethod?, NetworkingError?>
Unblocks a previously blocked payment method, restoring its ability to be used for transactions.
Return
A pair of the updated payment method and a networking error.
Parameters
payment Method Id
The unique identifier of the payment method to unblock.
fun unblockPaymentMethodWith(paymentMethodId: String, completionHandler: (FrameObjects.PaymentMethod?, NetworkingError?) -> Unit)
Unblocks a previously blocked payment method and delivers the result to a callback.
Parameters
payment Method Id
The unique identifier of the payment method to unblock.
completion Handler
Called with the updated payment method on success, or a NetworkingError on failure.