Interface ISendMessageData
-
- All Superinterfaces:
Serializable
public interface ISendMessageData extends Serializable
Common interface for form record messages.- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
- See Also:
ISendMessageRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<? extends ISendMessageAttachmentData>
getAttachments()
Optional.@NotBlank String
getContent()
String
getSubject()
Iterable<? extends ISendMessageUploadRequestData>
getUploadRequests()
Optional.
-
-
-
Method Detail
-
getAttachments
Iterable<? extends ISendMessageAttachmentData> getAttachments()
Optional. A list of files to add as attachments to the message. Defaults to empty.- Returns:
- A list of files to add as attachments to the message.
-
getUploadRequests
Iterable<? extends ISendMessageUploadRequestData> getUploadRequests()
Optional. A list of upload requests to create for the message. Defaults to empty.- Returns:
- A list of upload requests to create for the message.
-
getContent
@NotBlank @NotBlank String getContent()
- Returns:
- The content of the message.
-
getSubject
String getSubject()
- Returns:
- The subject of the message. May be blank only because of compatibility with older versions of the action.
-
-