com.adyen.service.resource.notification.TestNotificationConfiguration 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.notification;
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.service.Resource;
import java.util.Arrays;
public class TestNotificationConfiguration extends Resource {
public TestNotificationConfiguration(Service service) {
super(service,
service.getClient().getConfig().getMarketPayEndpoint() + "/Notification/" + Client.MARKETPAY_NOTIFICATION_API_VERSION + "/testNotificationConfiguration",
Arrays.asList(
"eventTypes",
"notificationId"
)
);
}
}