Package com.intercom.api.types
Interface ConversationPart._FinalStage
-
- All Known Implementing Classes:
ConversationPart.Builder
- Enclosing class:
- ConversationPart
public static interface ConversationPart._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationPart._FinalStageassignedTo(Reference assignedTo)ConversationPart._FinalStageassignedTo(java.util.Optional<Reference> assignedTo)The id of the admin that was assigned the conversation by this conversation_part (null if there has been no change in assignment.)ConversationPart._FinalStageattachments(java.util.List<PartAttachment> attachments)ConversationPart._FinalStageattachments(java.util.Optional<java.util.List<PartAttachment>> attachments)A list of attachments for the part.ConversationPart._FinalStagebody(java.lang.String body)ConversationPart._FinalStagebody(java.util.Optional<java.lang.String> body)The message body, which may contain HTML.ConversationPartbuild()ConversationPart._FinalStageexternalId(java.lang.String externalId)ConversationPart._FinalStageexternalId(java.util.Optional<java.lang.String> externalId)The external id of the conversation partConversationPart._FinalStageupdatedAt(java.lang.Integer updatedAt)ConversationPart._FinalStageupdatedAt(java.util.Optional<java.lang.Integer> updatedAt)The last time the conversation part was updated.
-
-
-
Method Detail
-
build
ConversationPart build()
-
body
ConversationPart._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
ConversationPart._FinalStage body(java.lang.String body)
-
updatedAt
ConversationPart._FinalStage updatedAt(java.util.Optional<java.lang.Integer> updatedAt)
The last time the conversation part was updated.
-
updatedAt
ConversationPart._FinalStage updatedAt(java.lang.Integer updatedAt)
-
assignedTo
ConversationPart._FinalStage assignedTo(java.util.Optional<Reference> assignedTo)
The id of the admin that was assigned the conversation by this conversation_part (null if there has been no change in assignment.)
-
assignedTo
ConversationPart._FinalStage assignedTo(Reference assignedTo)
-
attachments
ConversationPart._FinalStage attachments(java.util.Optional<java.util.List<PartAttachment>> attachments)
A list of attachments for the part.
-
attachments
ConversationPart._FinalStage attachments(java.util.List<PartAttachment> attachments)
-
externalId
ConversationPart._FinalStage externalId(java.util.Optional<java.lang.String> externalId)
The external id of the conversation part
-
externalId
ConversationPart._FinalStage externalId(java.lang.String externalId)
-
-