Interface HelpCenter._FinalStage
-
- All Known Implementing Classes:
HelpCenter.Builder
- Enclosing class:
- HelpCenter
public static interface HelpCenter._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HelpCenterbuild()HelpCenter._FinalStagecustomDomain(java.lang.String customDomain)HelpCenter._FinalStagecustomDomain(java.util.Optional<java.lang.String> customDomain)Custom domain configured for the help centerHelpCenter._FinalStagedisplayName(java.lang.String displayName)HelpCenter._FinalStagedisplayName(java.util.Optional<java.lang.String> displayName)The display name of the Help Center only seen by teammates.HelpCenter._FinalStageurl(java.lang.String url)HelpCenter._FinalStageurl(java.util.Optional<java.lang.String> url)The URL for the help center, if you have a custom domain then this will show the URL using the custom domain.HelpCenter._FinalStagewebsiteTurnedOn(java.lang.Boolean websiteTurnedOn)HelpCenter._FinalStagewebsiteTurnedOn(java.util.Optional<java.lang.Boolean> websiteTurnedOn)Whether the Help Center is turned on or not.
-
-
-
Method Detail
-
build
HelpCenter build()
-
websiteTurnedOn
HelpCenter._FinalStage websiteTurnedOn(java.util.Optional<java.lang.Boolean> websiteTurnedOn)
Whether the Help Center is turned on or not. This is controlled in your Help Center settings.
-
websiteTurnedOn
HelpCenter._FinalStage websiteTurnedOn(java.lang.Boolean websiteTurnedOn)
-
displayName
HelpCenter._FinalStage displayName(java.util.Optional<java.lang.String> displayName)
The display name of the Help Center only seen by teammates.
-
displayName
HelpCenter._FinalStage displayName(java.lang.String displayName)
-
url
HelpCenter._FinalStage url(java.util.Optional<java.lang.String> url)
The URL for the help center, if you have a custom domain then this will show the URL using the custom domain.
-
url
HelpCenter._FinalStage url(java.lang.String url)
-
customDomain
HelpCenter._FinalStage customDomain(java.util.Optional<java.lang.String> customDomain)
Custom domain configured for the help center
-
customDomain
HelpCenter._FinalStage customDomain(java.lang.String customDomain)
-
-