FirebaseRemoteConfig Framework Reference

RemoteConfigFetchAndActivateStatus

enum RemoteConfigFetchAndActivateStatus : Int, @unchecked Sendable

Indicates whether updated data was successfully fetched and activated.

  • The remote fetch succeeded and fetched data was activated.

    Declaration

    Swift

    case successFetchedFromRemote = 0
  • The fetch and activate succeeded from already fetched but yet unexpired config data. You can control this using minimumFetchInterval property in FIRRemoteConfigSettings.

    Declaration

    Swift

    case successUsingPreFetchedData = 1
  • The fetch and activate failed.

    Declaration

    Swift

    case error = 2