Package zendesk.android.messaging.model
Class MessagingSettings
-
- All Implemented Interfaces:
public final class MessagingSettingsA model that represents the configurations for this instance of Messaging for Android.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringintegrationIdprivate final Booleanenabledprivate final Stringbrandprivate final Stringtitleprivate final Stringdescriptionprivate final StringlogoUrlprivate final ColorThemelightThemeprivate final ColorThemedarkTheme
-
Constructor Summary
Constructors Constructor Description MessagingSettings(String integrationId, Boolean enabled, String brand, String title, String description, String logoUrl, ColorTheme lightTheme, ColorTheme darkTheme)
-
Method Summary
Modifier and Type Method Description final StringgetIntegrationId()the Sunshine Conversations integration ID final BooleangetEnabled()if this integration is enabled final StringgetBrand()the name of the brand to be displayed final StringgetTitle()the title of the brand to be displayed final StringgetDescription()the description of the brand to be displayed final StringgetLogoUrl()the logo URL of the brand to be displayed final ColorThemegetLightTheme()a ColorTheme with the colors to be used with light mode final ColorThemegetDarkTheme()a ColorTheme with the colors to be used with dark mode -
-
Constructor Detail
-
MessagingSettings
MessagingSettings(String integrationId, Boolean enabled, String brand, String title, String description, String logoUrl, ColorTheme lightTheme, ColorTheme darkTheme)
-
-
Method Detail
-
getIntegrationId
final String getIntegrationId()
the Sunshine Conversations integration ID
-
getEnabled
final Boolean getEnabled()
if this integration is enabled
-
getDescription
final String getDescription()
the description of the brand to be displayed
-
getLogoUrl
final String getLogoUrl()
the logo URL of the brand to be displayed
-
getLightTheme
final ColorTheme getLightTheme()
a ColorTheme with the colors to be used with light mode
-
getDarkTheme
final ColorTheme getDarkTheme()
a ColorTheme with the colors to be used with dark mode
-
-
-
-