PushFeatureConfig

data class PushFeatureConfig : PushFeatureModuleConfig

Configuration class for the Push Feature Module of the Salesforce Marketing Cloud SDK.

This class extends the SFMC SDK's PushFeatureModuleConfig to provide configuration for push notification functionality including Firebase Cloud Messaging (FCM) integration, notification customization, URL handling, and notification filtering.

Example Usage:

val pushConfig = PushFeatureConfig.builder()
.setSenderId("123456789012")
.setNotificationCustomizationOptions(
NotificationCustomizationOptions.create(R.drawable.ic_notification)
)
.build()

See also

Types

Link copied to clipboard
class Builder

Builder class for constructing PushFeatureConfig instances.

Link copied to clipboard
object Companion

Functions

Link copied to clipboard

Creates a new Builder with the current configuration values.