com.mailchimp.domain.SubscribeStatus Maven / Gradle / Ivy
package com.mailchimp.domain;
/**
* Explanation and usage of the possible values:
* Mail Chimp status usage
*
* @author Ed Bras
*/
public enum SubscribeStatus {
subscribed,
/**
* Used to archive a subscriber.
*/
unsubscribed,
/**
* Used for double opt-in. The subscriber will receive an email to confirm his subscription.
* Subscribing a subscriber with the same email address, will result in an http 400 error indicating that
* the user already exists. As such, he will not receive a confirmation email again.
*/
pending,
/**
* Used to archive a subscriber.
*/
cleaned;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy