This class contains IMA DAI settings APIs. Access this interface through the global
singleton
google.ima.dai.api.DaiSdkSettings.
| Methods | |
|---|---|
get
|
Returns an object with keys as feature flags and values as their current state.
|
set
|
Sets the value for any feature flags. |
Methods
getFeatureFlags
getFeatureFlags(): {
[key: string]: unknown;
}
Returns an object with keys as feature flags and values as their current state.
| Returns | |
|---|---|
{
|
|
setFeatureFlags
setFeatureFlags(featureFlags: {
[key: string]: unknown;
}): void
Sets the value for any feature flags. You must set feature flags before requesting a
stream. Calling this method after the first call resets any feature flags for the next
stream.
| Parameters | |
|---|---|
featureFlags: {
|
|