React Native Firebase
    Preparing search index...

    A pseudo-enum for usage with ConfigSettingsRead.lastFetchStatus to determine the last fetch status.

    firebase.remoteConfig.LastFetchStatus;
    
    interface LastFetchStatus {
        FAILURE: "failure";
        NO_FETCH_YET: "no_fetch_yet";
        SUCCESS: "success";
        THROTTLED: "throttled";
    }
    Index

    Properties

    FAILURE: "failure"

    A value indicating that the last fetch failed.

    firebase.remoteConfig.LastFetchStatus.FAILURE;
    
    NO_FETCH_YET: "no_fetch_yet"

    A value indicating that no fetches have occurred yet.

    This usually means you've not called fetch yet.

    firebase.remoteConfig.LastFetchStatus.NO_FETCH_YET;
    
    SUCCESS: "success"

    A value indicating that the last fetch was successful.

    firebase.remoteConfig.LastFetchStatus.SUCCESS;
    
    THROTTLED: "throttled"

    A value indicating that the last fetch was throttled.

    This usually occurs when calling fetch often with a low expiration duration.

    firebase.remoteConfig.LastFetchStatus.THROTTLED;