All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.fingerprintsoft.notification.mailgun.MailgunNotificationProperties Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package co.fingerprintsoft.notification.mailgun;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix ="notifications.mailgun")
public class MailgunNotificationProperties {

    private String emailFrom;

    private String apiKey;
    private String domain;
    private String version = "v3";
    private String url;
    private String testModeTo;
    private boolean testMode;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy