com.unzer.payment.webhook.WebhookList Maven / Gradle / Ivy
package com.unzer.payment.webhook;
import java.util.List;
/**
* WebhookList contains list of Webhooks returned by Payment API
*/
public class WebhookList {
private List events;
public List getEvents() {
return events;
}
}