Other Classes
The following classes are available globally.
-
DecodableConfigKey
DecodableConfigKey is a key class specialized with
ValueType
for Remote Config. It allows you to get value as a type ofValueType
from Remote Config with subscription. That is, you don’t need to manually convert value to another type you want. You can handle the value to type safe.DecodableConfigKey
is able to handleDecodable
value type.Declaration
Swift
public final class DecodableConfigKey<ValueType> : ConfigKeyBase<ValueType> where ValueType : ConfigSerializable, ValueType : Decodable
-
CodableConfigKey
DecodableConfigKey is a key class specialized with
ValueType
for Remote Config. It allows you to get value as a type ofValueType
from Remote Config with subscription. That is, you don’t need to manually convert value to another type you want. You can handle the value to type safe.CodableConfigKey
is able to handleCodable
value type.Declaration
Swift
public final class CodableConfigKey<ValueType> : ConfigKeyBase<ValueType> where ValueType : ConfigSerializable, ValueType : Decodable, ValueType : Encodable