Interface Subscriber

  • All Superinterfaces:
    BaseType, NamedType

    public interface Subscriber
    extends NamedType
    Defines interface for subscriber(lead) to the external email provider. The getter and setter methods for subscriber name and id are inherited from NamedType.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String STATUS_PARAM
      Status param that can be used as custom parameter to specify subscriber status.
    • Field Detail

      • STATUS_PARAM

        static final java.lang.String STATUS_PARAM
        Status param that can be used as custom parameter to specify subscriber status.
        See Also:
        Constant Field Values
    • Method Detail

      • getEmail

        java.lang.String getEmail()
        Get the subscriber email address.
        Returns:
        The email address of the subscriber.
      • setEmail

        void setEmail​(java.lang.String email)
        Set the subscriber email address.
        Parameters:
        email - The email address of the subscriber.
      • getFirstName

        java.lang.String getFirstName()
        Get the first name of the subscriber.
        Returns:
        The subscriber first name.
      • setFirstName

        void setFirstName​(java.lang.String firstName)
        Set the first name of the subscriber.
        Parameters:
        firstName - The first name of the subscriber.
      • getLastName

        java.lang.String getLastName()
        Get the last name of the subscriber.
        Returns:
        The subscriber last name.
      • setLastName

        void setLastName​(java.lang.String lastName)
        Set the last name of the subsciber.
        Parameters:
        lastName - The subscriber last name.