Package com.intercom.api.types
Interface ConversationSource._FinalStage
-
- All Known Implementing Classes:
ConversationSource.Builder
- Enclosing class:
- ConversationSource
public static interface ConversationSource._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationSource._FinalStageattachments(java.util.List<PartAttachment> attachments)ConversationSource._FinalStageattachments(java.util.Optional<java.util.List<PartAttachment>> attachments)A list of attachments for the part.ConversationSource._FinalStagebody(java.lang.String body)ConversationSource._FinalStagebody(java.util.Optional<java.lang.String> body)The message body, which may contain HTML.ConversationSourcebuild()ConversationSource._FinalStageurl(java.lang.String url)ConversationSource._FinalStageurl(java.util.Optional<java.lang.String> url)The URL where the conversation was started.
-
-
-
Method Detail
-
build
ConversationSource build()
-
body
ConversationSource._FinalStage body(java.util.Optional<java.lang.String> body)
The message body, which may contain HTML. For Twitter, this will show a generic message regarding why the body is obscured.
-
body
ConversationSource._FinalStage body(java.lang.String body)
-
attachments
ConversationSource._FinalStage attachments(java.util.Optional<java.util.List<PartAttachment>> attachments)
A list of attachments for the part.
-
attachments
ConversationSource._FinalStage attachments(java.util.List<PartAttachment> attachments)
-
url
ConversationSource._FinalStage url(java.util.Optional<java.lang.String> url)
The URL where the conversation was started. For Twitter, Email, and Bots, this will be blank.
-
url
ConversationSource._FinalStage url(java.lang.String url)
-
-