jp.gopay.sdk.models.request.store.WebhookReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.models.request.store;
import com.google.gson.annotations.SerializedName;
import jp.gopay.sdk.types.PaymentSystemEvent;
import java.net.URL;
import java.util.List;
@SuppressWarnings("FieldCanBeLocal")
public class WebhookReq {
@SerializedName("url")
private URL url;
@SerializedName("triggers")
private List triggers;
public WebhookReq(URL url, List triggers) {
this.url = url;
this.triggers = triggers;
}
}