Interface ContactReplyBaseRequest._FinalStage
-
- All Known Implementing Classes:
ContactReplyBaseRequest.Builder
- Enclosing class:
- ContactReplyBaseRequest
public static interface ContactReplyBaseRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContactReplyBaseRequest._FinalStageattachmentUrls(java.util.List<java.lang.String> attachmentUrls)ContactReplyBaseRequest._FinalStageattachmentUrls(java.util.Optional<java.util.List<java.lang.String>> attachmentUrls)A list of image URLs that will be added as attachments.ContactReplyBaseRequestbuild()ContactReplyBaseRequest._FinalStagecreatedAt(java.lang.Integer createdAt)ContactReplyBaseRequest._FinalStagecreatedAt(java.util.Optional<java.lang.Integer> createdAt)The time the reply was created.ContactReplyBaseRequest._FinalStagereplyOptions(java.util.List<ContactReplyBaseRequest.ReplyOptionsItem> replyOptions)ContactReplyBaseRequest._FinalStagereplyOptions(java.util.Optional<java.util.List<ContactReplyBaseRequest.ReplyOptionsItem>> replyOptions)The quick reply selection the contact wishes to respond with.
-
-
-
Method Detail
-
build
ContactReplyBaseRequest build()
-
createdAt
ContactReplyBaseRequest._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
ContactReplyBaseRequest._FinalStage createdAt(java.lang.Integer createdAt)
-
attachmentUrls
ContactReplyBaseRequest._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
ContactReplyBaseRequest._FinalStage attachmentUrls(java.util.List<java.lang.String> attachmentUrls)
-
replyOptions
ContactReplyBaseRequest._FinalStage replyOptions(java.util.Optional<java.util.List<ContactReplyBaseRequest.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
ContactReplyBaseRequest._FinalStage replyOptions(java.util.List<ContactReplyBaseRequest.ReplyOptionsItem> replyOptions)
-
-