API/Autodoc/Classes/RuStore.RemoteConfig.RuStoreRemoteConfigClientSettings.en.md


RuStore::RemoteConfig::RuStoreRemoteConfigClientSettings

Optional initialization parameters via C#.

Public Types

Name
enum class Environment { Default, Alpha, Beta, Release}
Allows comparing Environment with the value set in the interface.

Public Attributes

Name
string appId — Unique identifier of the Remote Config tool. Available in the RuStore developer console on the Remote Config parameters creation page.
string account — Allows comparing Account with the value set in the interface.
string language — Allows comparing Language with the value set in the interface. By default, Language is not passed, in which case the default config is returned. To pass Language, you need to implement ConfigRequestParameterProvider.
string appBuild — Allows comparing AppBuild with the value set in the interface.
string appVersion — Allows comparing AppVersion with the value set in the interface.
string deviceId — Allows comparing DeviceId with the value set in the interface.
string deviceModel — Allows comparing DeviceModel with the value set in the interface. By default, DeviceModel is not passed, in which case the default config is returned.
string osVersion — Allows comparing OsVersion with the value set in the interface. By default, OsVersion is not passed, in which case the default config is returned.
Environment environment — Allows comparing Environment with the value set in the interface. Can take values: Alpha, Beta, Release. This parameter is convenient for testing configuration on different app builds.

enum Environment

Enumerator Value Description
Default Default value.
Alpha Alpha.
Beta Beta.
Release Release.

Allows comparing Environment with the value set in the interface.

variable appId

string appId;

variable account

string account;

variable language

string language;

variable appBuild

string appBuild;

variable appVersion

string appVersion;

variable deviceId

string deviceId;

variable deviceModel

string deviceModel;

variable osVersion

string osVersion;

variable environment

Environment environment = Environment.Default;