
com.bronto.api.model.DeliveryRecipientSelection Maven / Gradle / Ivy
The newest version!
package com.bronto.api.model;
public enum DeliveryRecipientSelection implements ApiValue {
ELIGIBLE,
INELIGIBLE,
SELECTED;
public String getApiValue() {
return name().toLowerCase();
}
public boolean matches(String apiValue) {
return getApiValue().equals(apiValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy