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.

Constructors

Link copied to clipboard
constructor(    channel: String? = null,     appVersion: String? = null,     appId: String? = null,     locale: String? = null,     os: String? = null,     osVersion: String? = null,     formFactor: String? = null,     country: String? = null,     customTargettingAttributes: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

String containing the XUL application app_id

Link copied to clipboard

User visible version string (e.g. "1.0.3")

Link copied to clipboard

The delivery channel of the application (e.g "nightly")

Link copied to clipboard

Country of the user.

Link copied to clipboard

Extra attributes to add to the env for JEXL filtering.

Link copied to clipboard

Form-factor of the device ("phone", "tablet", or "desktop")

Link copied to clipboard

The locale of the application during initialization (e.g. "es-ES")

Link copied to clipboard
var os: String?

The name of the operating system (e.g. "Android", "iOS", "Darwin", "WINNT")

Link copied to clipboard

The user-visible version of the operating system (e.g. "1.2.3")