Package zendesk.support.guide
Class HelpCenterUiConfig
- java.lang.Object
-
- zendesk.support.guide.HelpCenterUiConfig
-
- All Implemented Interfaces:
- java.io.Serializable, UiConfig
public class HelpCenterUiConfig extends java.lang.Object implements UiConfig
Data class, that represents the initial configuration ofHelpCenterActivity
. Use theHelpCenterUiConfig.Builder
to create an instance.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static class
HelpCenterUiConfig.Builder
This builder is used to generate the startup configuration for the Activity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.List<java.lang.Long>
getCategoryIds()
java.lang.String[]
getLabelNames()
java.util.List<java.lang.Long>
getSectionIds()
java.util.List<UiConfig>
getUiConfigs()
A list of configurations that gets passed through screens and is used for configuring activities that get started from the initial entry point.boolean
isCollapseCategories()
boolean
isContactUsButtonVisible()
boolean
isShowConversationsMenuButton()
-
-
-
Method Detail
-
getCategoryIds
public java.util.List<java.lang.Long> getCategoryIds()
-
getSectionIds
public java.util.List<java.lang.Long> getSectionIds()
-
getLabelNames
public java.lang.String[] getLabelNames()
-
isContactUsButtonVisible
public boolean isContactUsButtonVisible()
-
isCollapseCategories
public boolean isCollapseCategories()
-
isShowConversationsMenuButton
public boolean isShowConversationsMenuButton()
-
getUiConfigs
public java.util.List<UiConfig> getUiConfigs()
Description copied from interface:UiConfig
A list of configurations that gets passed through screens and is used for configuring activities that get started from the initial entry point.- Specified by:
getUiConfigs
in interfaceUiConfig
-
-