create ACHPayment Method
suspend fun createACHPaymentMethod(request: PaymentMethodRequests.CreateACHPaymentMethodRequest): Pair<FrameObjects.PaymentMethod?, NetworkingError?>
Creates a new ACH bank-account payment method.
Return
A pair of the created payment method and a networking error.
Parameters
request
The ACH bank account details and optional customer or account associations.
fun createACHPaymentMethod(request: PaymentMethodRequests.CreateACHPaymentMethodRequest, scope: CoroutineScope, completionHandler: (FrameObjects.PaymentMethod?, NetworkingError?) -> Unit)
Creates a new ACH payment method and delivers the result to a callback.
Parameters
request
The ACH bank account details and optional customer or account associations.
scope
The CoroutineScope used for the network operation (unused internally but kept for API consistency).
completion Handler
Called with the created payment method on success, or a NetworkingError on failure.