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 Detail

      • STATUS_PARAM

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

      • getEmail

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

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

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

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

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

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