Package flyteidl.admin
Interface Notification.EmailMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Notification.EmailMessage,Notification.EmailMessage.Builder
- Enclosing class:
- Notification
public static interface Notification.EmailMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBody()The content of the email body.com.google.protobuf.ByteStringgetBodyBytes()The content of the email body.StringgetRecipientsEmail(int index)The list of email addresses to receive an email with the content populated in the other fields.com.google.protobuf.ByteStringgetRecipientsEmailBytes(int index)The list of email addresses to receive an email with the content populated in the other fields.intgetRecipientsEmailCount()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.StringgetSenderEmail()The email of the sender.com.google.protobuf.ByteStringgetSenderEmailBytes()The email of the sender.StringgetSubjectLine()The content of the subject line.com.google.protobuf.ByteStringgetSubjectLineBytes()The content of the subject line.-
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.
-
-