public interface IconRequestManager
The payment method icons can be changed through the backend of wallee by the merchant and as such we have to load them dynamically. This request manager helps to fetch them. However it is not responsible to cache the icons in any way.
Fetching the icons do not require any permissions or credentials.
| Modifier and Type | Method and Description |
|---|---|
void |
fetchIcon(PaymentMethodConfiguration paymentMethodConfiguration,
RequestCallback<PaymentMethodIcon> callback)
This method fetches the payment method icon from the remote server.
|
void fetchIcon(PaymentMethodConfiguration paymentMethodConfiguration, RequestCallback<PaymentMethodIcon> callback)
paymentMethodConfiguration - the payment method for which icon should be fetched for.callback - the callback which is invoked once the icon has been
loaded.