Package com.intercom.api.types
Interface CreateMessageRequest.Inapp._FinalStage
-
- All Known Implementing Classes:
CreateMessageRequest.Inapp.Builder
- Enclosing class:
- CreateMessageRequest.Inapp
public static interface CreateMessageRequest.Inapp._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateMessageRequest.Inappbuild()CreateMessageRequest.Inapp._FinalStagecreateConversationWithoutContactReply(java.lang.Boolean createConversationWithoutContactReply)CreateMessageRequest.Inapp._FinalStagecreateConversationWithoutContactReply(java.util.Optional<java.lang.Boolean> createConversationWithoutContactReply)Whether a conversation should be opened in the inbox for the message without the contact replying.CreateMessageRequest.Inapp._FinalStagecreatedAt(java.lang.Integer createdAt)CreateMessageRequest.Inapp._FinalStagecreatedAt(java.util.Optional<java.lang.Integer> createdAt)The time the message was created.CreateMessageRequest.Inapp._FinalStagesubject(java.lang.String subject)CreateMessageRequest.Inapp._FinalStagesubject(java.util.Optional<java.lang.String> subject)The title of the email.CreateMessageRequest.Inapp._FinalStagetemplate(java.lang.String template)CreateMessageRequest.Inapp._FinalStagetemplate(java.util.Optional<java.lang.String> template)The style of the outgoing message.
-
-
-
Method Detail
-
build
CreateMessageRequest.Inapp build()
-
subject
CreateMessageRequest.Inapp._FinalStage subject(java.util.Optional<java.lang.String> subject)
The title of the email.
-
subject
CreateMessageRequest.Inapp._FinalStage subject(java.lang.String subject)
-
template
CreateMessageRequest.Inapp._FinalStage template(java.util.Optional<java.lang.String> template)
The style of the outgoing message. Possible values
plainorpersonal.
-
template
CreateMessageRequest.Inapp._FinalStage template(java.lang.String template)
-
createdAt
CreateMessageRequest.Inapp._FinalStage createdAt(java.util.Optional<java.lang.Integer> createdAt)
The time the message was created. If not provided, the current time will be used.
-
createdAt
CreateMessageRequest.Inapp._FinalStage createdAt(java.lang.Integer createdAt)
-
createConversationWithoutContactReply
CreateMessageRequest.Inapp._FinalStage createConversationWithoutContactReply(java.util.Optional<java.lang.Boolean> createConversationWithoutContactReply)
Whether a conversation should be opened in the inbox for the message without the contact replying. Defaults to false if not provided.
-
createConversationWithoutContactReply
CreateMessageRequest.Inapp._FinalStage createConversationWithoutContactReply(java.lang.Boolean createConversationWithoutContactReply)
-
-