RemoteSettingsContext
data class RemoteSettingsContext( var channel: String? = null, var appVersion: String? = null, var appId: String? = null, var locale: String? = null, var os: String? = null, var osVersion: String? = null, var formFactor: String? = null, var country: String? = null, var customTargettingAttributes: Map<String, String>? = null)
Remote settings context object
This is used to filter the records returned. We always fetch all records
from the remote-settings storage. Some records could have a filter_expression
. If this is passed in and the record has a filter_expression
, then only returns where the expression is true will be returned.
See https://remote-settings.readthedocs.io/en/latest/target-filters.html for details.