assignCustomerToken

abstract fun assignCustomerToken(request: POAssignCustomerTokenRequest, threeDSService: PO3DSService): Job

Deprecated

Use replacement function.

Replace with

assign(request, threeDSService)

Assign new source to the existing customer token and optionally verify it with the given request and 3DS service implementation. Collect the result by subscribing to assignCustomerTokenResult flow before invoking this function. Returns coroutine job.


abstract fun assignCustomerToken(request: POAssignCustomerTokenRequest, threeDSService: PO3DSService, callback: (ProcessOutResult<POCustomerToken>) -> Unit): Job

Deprecated

Use replacement function.

Replace with

assign(request, threeDSService)

Assign new source to the existing customer token and optionally verify it with the given request and 3DS service implementation. Result provided in the callback. Returns coroutine job.