isEnabled
Note: This API is supported from version 10.0.0.
The isEnabled API checks whether the call functionality is enabled in the brand. You can configure this setting by navigating to Settings > Brand > Select the Brand > Configurations > Channels > Audio Call.
Returns:
- Boolean: "true" if the call functionality is enabled and "false" when disabled.
Example
Copiedlet isCallEnabled = ZohoSalesIQCalls.isEnabled
if isCallEnabled {
print("Call functionality is enabled.")
} else {
print("Call functionality is disabled.")
}