Package zendesk.android.messaging
Interface MessagingFactory
-
- All Implemented Interfaces:
public interface MessagingFactory
This factory is the starting point to begin using Messaging. It can be used to create instances of Messaging, which is the main entry point of the SDK.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
MessagingFactory.CreateParams
Params needed by the MessagingFactory to create an instance of Messaging.
-
Method Summary
Modifier and Type Method Description abstract Messaging
create(MessagingFactory.CreateParams params)
Creates a new instance of Messaging. abstract UserColors
getUserLightColors()
Encapsulates the light colors provided by the user to be used in the SDK theme. abstract UserColors
getUserDarkColors()
Encapsulates the dark colors provided by the user to be used in the SDK theme. -
-
Method Detail
-
create
abstract Messaging create(MessagingFactory.CreateParams params)
Creates a new instance of Messaging.
-
getUserLightColors
abstract UserColors getUserLightColors()
Encapsulates the light colors provided by the user to be used in the SDK theme.
-
getUserDarkColors
abstract UserColors getUserDarkColors()
Encapsulates the dark colors provided by the user to be used in the SDK theme.
-
-
-
-