Interface Notification.EmailMessageOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getBody()
      The content of the email body.
      com.google.protobuf.ByteString getBodyBytes()
      The content of the email body.
      String getRecipientsEmail​(int index)
      The list of email addresses to receive an email with the content populated in the other fields.
      com.google.protobuf.ByteString getRecipientsEmailBytes​(int index)
      The list of email addresses to receive an email with the content populated in the other fields.
      int getRecipientsEmailCount()
      The list of email addresses to receive an email with the content populated in the other fields.
      List<String> getRecipientsEmailList()
      The list of email addresses to receive an email with the content populated in the other fields.
      String getSenderEmail()
      The email of the sender.
      com.google.protobuf.ByteString getSenderEmailBytes()
      The email of the sender.
      String getSubjectLine()
      The content of the subject line.
      com.google.protobuf.ByteString getSubjectLineBytes()
      The content of the subject line.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getRecipientsEmailList

        List<String> getRecipientsEmailList()
         The list of email addresses to receive an email with the content populated in the other fields.
         Currently, each email recipient will receive its own email.
         This populates the TO field.
         
        repeated string recipients_email = 1;
        Returns:
        A list containing the recipientsEmail.
      • getRecipientsEmailCount

        int getRecipientsEmailCount()
         The list of email addresses to receive an email with the content populated in the other fields.
         Currently, each email recipient will receive its own email.
         This populates the TO field.
         
        repeated string recipients_email = 1;
        Returns:
        The count of recipientsEmail.
      • getRecipientsEmail

        String getRecipientsEmail​(int index)
         The list of email addresses to receive an email with the content populated in the other fields.
         Currently, each email recipient will receive its own email.
         This populates the TO field.
         
        repeated string recipients_email = 1;
        Parameters:
        index - The index of the element to return.
        Returns:
        The recipientsEmail at the given index.
      • getRecipientsEmailBytes

        com.google.protobuf.ByteString getRecipientsEmailBytes​(int index)
         The list of email addresses to receive an email with the content populated in the other fields.
         Currently, each email recipient will receive its own email.
         This populates the TO field.
         
        repeated string recipients_email = 1;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the recipientsEmail at the given index.
      • getSenderEmail

        String getSenderEmail()
         The email of the sender.
         This populates the FROM field.
         
        string sender_email = 2;
        Returns:
        The senderEmail.
      • getSenderEmailBytes

        com.google.protobuf.ByteString getSenderEmailBytes()
         The email of the sender.
         This populates the FROM field.
         
        string sender_email = 2;
        Returns:
        The bytes for senderEmail.
      • getSubjectLine

        String getSubjectLine()
         The content of the subject line.
         This populates the SUBJECT field.
         
        string subject_line = 3;
        Returns:
        The subjectLine.
      • getSubjectLineBytes

        com.google.protobuf.ByteString getSubjectLineBytes()
         The content of the subject line.
         This populates the SUBJECT field.
         
        string subject_line = 3;
        Returns:
        The bytes for subjectLine.
      • getBody

        String getBody()
         The content of the email body.
         This populates the BODY field.
         
        string body = 4;
        Returns:
        The body.
      • getBodyBytes

        com.google.protobuf.ByteString getBodyBytes()
         The content of the email body.
         This populates the BODY field.
         
        string body = 4;
        Returns:
        The bytes for body.