A value indicating that the last fetch failed.
firebase.remoteConfig.LastFetchStatus.FAILURE;
A value indicating that no fetches have occurred yet.
This usually means you've not called fetch yet.
firebase.remoteConfig.LastFetchStatus.NO_FETCH_YET;
A value indicating that the last fetch was successful.
firebase.remoteConfig.LastFetchStatus.SUCCESS;
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;
A pseudo-enum for usage with ConfigSettingsRead.lastFetchStatus to determine the last fetch status.
Example