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 of ValueType 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 handle Decodable 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 of ValueType 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 handle Codable value type.

    Declaration

    Swift

    public final class CodableConfigKey<ValueType> : ConfigKeyBase<ValueType> where ValueType : ConfigSerializable, ValueType : Decodable, ValueType : Encodable