Interface AddressLookupComponent
-
- All Implemented Interfaces:
public interface AddressLookupComponentA Component that performs Address Lookup functionality should implement this interface.
-
-
Method Summary
Modifier and Type Method Description abstract UnitsetAddressLookupCallback(AddressLookupCallback addressLookupCallback)Set a callback that will be triggered to perform address lookup actions. abstract UnitupdateAddressLookupOptions(List<LookupAddress> options)Updates the address options that will be displayed to the shopper in com.adyen.checkout.ui.core.internal.ui.view. abstract UnitsetAddressLookupResult(AddressLookupResult addressLookupResult)Set the result of address completion call. -
-
Method Detail
-
setAddressLookupCallback
abstract Unit setAddressLookupCallback(AddressLookupCallback addressLookupCallback)
Set a callback that will be triggered to perform address lookup actions.
- Parameters:
addressLookupCallback- The callback that will be triggered to perform address lookup options such as query changes, completion of the lookup.
-
updateAddressLookupOptions
abstract Unit updateAddressLookupOptions(List<LookupAddress> options)
Updates the address options that will be displayed to the shopper in com.adyen.checkout.ui.core.internal.ui.view.AddressLookupView as part of CardComponent.
- Parameters:
options- Address option list to be displayed.
-
setAddressLookupResult
abstract Unit setAddressLookupResult(AddressLookupResult addressLookupResult)
Set the result of address completion call.
- Parameters:
addressLookupResult- The result.
-
-
-
-