Interface ContactReplyUserIdRequest._FinalStage
-
- All Known Implementing Classes:
ContactReplyUserIdRequest.Builder
- Enclosing class:
- ContactReplyUserIdRequest
public static interface ContactReplyUserIdRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContactReplyUserIdRequest._FinalStageattachmentFiles(java.util.List<ConversationAttachmentFiles> attachmentFiles)ContactReplyUserIdRequest._FinalStageattachmentFiles(java.util.Optional<java.util.List<ConversationAttachmentFiles>> attachmentFiles)A list of files that will be added as attachments.ContactReplyUserIdRequest._FinalStageattachmentUrls(java.util.List<java.lang.String> attachmentUrls)ContactReplyUserIdRequest._FinalStageattachmentUrls(java.util.Optional<java.util.List<java.lang.String>> attachmentUrls)A list of image URLs that will be added as attachments.ContactReplyUserIdRequestbuild()ContactReplyUserIdRequest._FinalStagecreatedAt(java.lang.Integer createdAt)ContactReplyUserIdRequest._FinalStagecreatedAt(java.util.Optional<java.lang.Integer> createdAt)The time the reply was created.ContactReplyUserIdRequest._FinalStagereplyOptions(java.util.List<ContactReplyUserIdRequest.ReplyOptionsItem> replyOptions)ContactReplyUserIdRequest._FinalStagereplyOptions(java.util.Optional<java.util.List<ContactReplyUserIdRequest.ReplyOptionsItem>> replyOptions)The quick reply selection the contact wishes to respond with.
-
-
-
Method Detail
-
build
ContactReplyUserIdRequest build()
-
createdAt
ContactReplyUserIdRequest._FinalStage createdAt(java.util.Optional<java.lang.Integer> createdAt)
The time the reply was created. If not provided, the current time will be used.
-
createdAt
ContactReplyUserIdRequest._FinalStage createdAt(java.lang.Integer createdAt)
-
attachmentUrls
ContactReplyUserIdRequest._FinalStage attachmentUrls(java.util.Optional<java.util.List<java.lang.String>> attachmentUrls)
A list of image URLs that will be added as attachments. You can include up to 10 URLs.
-
attachmentUrls
ContactReplyUserIdRequest._FinalStage attachmentUrls(java.util.List<java.lang.String> attachmentUrls)
-
replyOptions
ContactReplyUserIdRequest._FinalStage replyOptions(java.util.Optional<java.util.List<ContactReplyUserIdRequest.ReplyOptionsItem>> replyOptions)
The quick reply selection the contact wishes to respond with. These map to buttons displayed in the Messenger UI if sent by a bot, or the reply options sent by an Admin via the API.
-
replyOptions
ContactReplyUserIdRequest._FinalStage replyOptions(java.util.List<ContactReplyUserIdRequest.ReplyOptionsItem> replyOptions)
-
attachmentFiles
ContactReplyUserIdRequest._FinalStage attachmentFiles(java.util.Optional<java.util.List<ConversationAttachmentFiles>> attachmentFiles)
A list of files that will be added as attachments. You can include up to 10 files.
-
attachmentFiles
ContactReplyUserIdRequest._FinalStage attachmentFiles(java.util.List<ConversationAttachmentFiles> attachmentFiles)
-
-