Package com.zendesk.sdk.model.settings
Class MobileSettings
- java.lang.Object
-
- com.zendesk.sdk.model.settings.MobileSettings
-
public class MobileSettings extends java.lang.Object
This model contains the server-driven configurations that can affect how the SDK behaves.
-
-
Constructor Summary
Constructors Constructor and Description MobileSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description AccountSettings
getAccountSettings()
Gets the Account settingsSdkSettings
getSdkSettings()
Gets the SDK settings.
-
-
-
Method Detail
-
getSdkSettings
public SdkSettings getSdkSettings()
Gets the SDK settings.This method is returns an empty model if the model wasn't initialised yet. This means that it is safe to call this method but you must check any calls on the model itself for null values, e.g.
SdkSettings.getContactUsSettings()
- Returns:
- The SDK settings
-
getAccountSettings
public AccountSettings getAccountSettings()
Gets the Account settingsThis method is returns an empty model if the model wasn't initialised yet. This means that it is safe to call this method but you must check any calls on the model itself for null values, e.g.
AccountSettings.getAttachmentSettings()
- Returns:
- the Account settings
-
-