Package com.zopim.android.sdk.api
Interface ChatConfig
-
- All Superinterfaces:
- ChatApiConfig
public interface ChatConfig extends ChatApiConfig
Chat configuration interfaceUsed to tell what is the chat configuration of the current chat session. Configuration is passed during initialization and start of the chat.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description EmailTranscript
getEmailTranscript()
Gets the email transcript configuration as configured at initialization viaZopimChatApi.DefaultConfig
or start of the chat viaZopimChatApi.SessionConfig
PreChatForm
getPreChatForm()
Gets pre chat configuration form as configured at initialization viaZopimChatApi.DefaultConfig
or start of the chat viaZopimChatApi.SessionConfig
boolean
isFileSendingEnabled()
Gets if file sending support is enabled via.-
Methods inherited from interface com.zopim.android.sdk.api.ChatApiConfig
getDepartment, getTags, getVisitorInfo
-
-
-
-
Method Detail
-
getPreChatForm
PreChatForm getPreChatForm()
Gets pre chat configuration form as configured at initialization viaZopimChatApi.DefaultConfig
or start of the chat viaZopimChatApi.SessionConfig
- Returns:
- pre chat form
- See Also:
PreChatForm
-
getEmailTranscript
EmailTranscript getEmailTranscript()
Gets the email transcript configuration as configured at initialization viaZopimChatApi.DefaultConfig
or start of the chat viaZopimChatApi.SessionConfig
- Returns:
- email transcript configuration
-
isFileSendingEnabled
boolean isFileSendingEnabled()
Gets if file sending support is enabled via.ZopimChat.DefaultConfig
or start of the chat viewZopimChat.SessionConfig
- Returns:
true
if file sending support is enabled,false
if not
-
-