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

io.rocketbase.mail.dto.webhook.sub.SuppressionReason Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.rocketbase.mail.dto.webhook.sub;

import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;

public enum SuppressionReason {
    HARD_BOUNCE("HardBounce"),
    SPAM_COMPLAINT("SpamComplaint"),
    MANUAL_SUPPRESSION("ManualSuppression");

    private String value;

    SuppressionReason(String value) {
        this.value = value;
    }

    @JsonValue
    public String getValue() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy