com.adyen.service.resource.binlookup.GetCostEstimate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.service.resource.binlookup;
import java.util.Arrays;
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.service.Resource;
public class GetCostEstimate extends Resource {
public GetCostEstimate(Service service) {
super(service,
service.getClient().getConfig().getEndpoint() + Client.BIN_LOOKUP_PAL_SUFFIX + Client.BIN_LOOKUP_API_VERSION + "/getCostEstimate",
Arrays.asList("merchantAccount", "amount"));
}
}