Package zendesk.support.guide
Class HelpCenterConfiguration
- java.lang.Object
- 
- zendesk.support.guide.HelpCenterConfiguration
 
- 
 
 public class HelpCenterConfiguration extends java.lang.ObjectData class, that represents the initial configuration ofHelpCenterActivity. Use theHelpCenterConfiguration.Builderto create an instance.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class and Description static classHelpCenterConfiguration.BuilderThis builder is used to generate the startup configuration for the Activity.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.List<java.lang.Long>getCategoryIds()java.util.List<Configuration>getConfigurations()java.util.List<Engine>getEngines()Returns the list ofEngines that was set onHelpCenterConfiguration.Builder.withEngines(Engine...).java.lang.String[]getLabelNames()java.util.List<java.lang.Long>getSectionIds()booleanisCollapseCategories()booleanisContactUsButtonVisible()booleanisShowConversationsMenuButton()
 
- 
- 
- 
Method Detail- 
getCategoryIdspublic java.util.List<java.lang.Long> getCategoryIds() 
 - 
getSectionIdspublic java.util.List<java.lang.Long> getSectionIds() 
 - 
getLabelNamespublic java.lang.String[] getLabelNames() 
 - 
getEnginespublic java.util.List<Engine> getEngines() Returns the list ofEngines that was set onHelpCenterConfiguration.Builder.withEngines(Engine...). This method should not be called more than once, as retrieving the Engine list removes it from the internal storage. As such, every subsequent call to this method will return null. Note also that theHelpCenterConfiguration.Builderstarts with an empty list rather than null.- Returns:
- a List of Engine, or null.
 
 - 
isContactUsButtonVisiblepublic boolean isContactUsButtonVisible() 
 - 
isCollapseCategoriespublic boolean isCollapseCategories() 
 - 
isShowConversationsMenuButtonpublic boolean isShowConversationsMenuButton() 
 - 
getConfigurationspublic java.util.List<Configuration> getConfigurations() 
 
- 
 
-