Package com.pubmatic.sdk.common
Class OpenWrapSDKConfig
-
- All Implemented Interfaces:
public final class OpenWrapSDKConfigRepresents the configuration for the OpenWrap SDK.
This class represents the configuration parameters required for initializing the OpenWrap SDK, including the publisher ID and the list of profile IDs.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classOpenWrapSDKConfig.BuilderBuilder class for OpenWrapSDKConfig.
-
Field Summary
Fields Modifier and Type Field Description private final StringpublisherIdprivate final List<Integer>profileIds
-
Method Summary
Modifier and Type Method Description final StringgetPublisherId()The Publisher ID. final List<Integer>getProfileIds()The List of Profile IDs. -
-
Method Detail
-
getPublisherId
final String getPublisherId()
The Publisher ID.
-
getProfileIds
final List<Integer> getProfileIds()
The List of Profile IDs.
Usage example: val sdkConfig = OpenWrapSDKConfig.Builder("yourPublisherId", listOf(12345)).build()
-
-
-
-