Interface ISendMessageUploadRequestData
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SendMessageUploadRequestData
public interface ISendMessageUploadRequestData extends Serializable
Common interface for the data of a form record messsage upload request.- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
- See Also:
ISendMessageData
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EUploadRequestFileMergeMode
getFileMergeMode()
How to handle existing files when the user uploads files to fulfill the upload request.String
getFormFieldName()
Name of an upload form field associated with the upload request.Long
getRepetitionId()
Optional.
-
-
-
Method Detail
-
getFileMergeMode
EUploadRequestFileMergeMode getFileMergeMode()
How to handle existing files when the user uploads files to fulfill the upload request.- Returns:
- How to handle existing files when the upload requests is fulfilled.
-
getFormFieldName
String getFormFieldName()
Name of an upload form field associated with the upload request. May be null or empty if the upload request is not associated with a form field.- Returns:
- Name of the upload form field.
-
getRepetitionId
Long getRepetitionId()
Optional. ID of the repetition of the upload request. May be null if the upload request is not repeated. Note that ID is not the ordinal index of the repetition, but a unique identifier. An ordinal index starts at 0 is continuous (0,1,2,3,4,...), while an ID may be any unique value.- Returns:
- ID of the repetition of the upload request.
-
-