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

it.contactlab.hub.sdk.java.models.AbstractAutomaticMarketing Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package it.contactlab.hub.sdk.java.models;

import org.immutables.value.Value;

import java.util.Optional;

/**
 * Customer's consents information - part of automatic marketing's consents.
 */
@Value.Immutable
@Value.Style(typeImmutable = "*")
public abstract class AbstractAutomaticMarketing {

  /**
   * Consent for marketing by an automatic sms.
   */
  public abstract Optional sms();

  /**
   * Consent for marketing by an automatic email.
   */
  public abstract Optional email();

  /**
   * Consent for marketing by an automatic mobile push.
   */
  public abstract Optional push();

  /**
   * Consent for marketing by an automatic instant message.
   */
  public abstract Optional im();

  /**
   * Consent for marketing by an automatic telephonic call.
   */
  public abstract Optional telephonic();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy