List<PaymentMethod> |
PaymentApi.getAccountPaymentMethods(UUID accountId,
boolean includedInactive,
boolean withPluginInfo,
Iterable<PluginProperty> properties,
TenantContext context) |
|
Pagination<PaymentMethod> |
PaymentApi.getPaymentMethods(Long offset,
Long limit,
boolean withPluginInfo,
Iterable<PluginProperty> properties,
TenantContext context) |
Find all payment methods across all plugins
|
Pagination<PaymentMethod> |
PaymentApi.getPaymentMethods(Long offset,
Long limit,
String pluginName,
boolean withPluginInfo,
Iterable<PluginProperty> properties,
TenantContext context) |
Find all payment methods in a given plugin
|
List<PaymentMethod> |
PaymentApi.refreshPaymentMethods(Account account,
Iterable<PluginProperty> properties,
CallContext context) |
Refresh all payment methods across all plugins
|
List<PaymentMethod> |
PaymentApi.refreshPaymentMethods(Account account,
String pluginName,
Iterable<PluginProperty> properties,
CallContext context) |
|
Pagination<PaymentMethod> |
PaymentApi.searchPaymentMethods(String searchKey,
Long offset,
Long limit,
boolean withPluginInfo,
Iterable<PluginProperty> properties,
TenantContext context) |
Find all payment methods matching the search key across all plugins
|
Pagination<PaymentMethod> |
PaymentApi.searchPaymentMethods(String searchKey,
Long offset,
Long limit,
String pluginName,
boolean withPluginInfo,
Iterable<PluginProperty> properties,
TenantContext context) |
Find all payment methods matching the search key in a given plugin
|