Jump to top

ValueSource

interface

A pseudo-enum for usage with ConfigValue.source to determine the value source.

Example
firebase.remoteConfig.ValueSource;

Properties

DEFAULT

</>

If the value was set as a default value.

DEFAULT: "default";

REMOTE

</>

If the value was retrieved from the server.

REMOTE: "remote";

STATIC

</>

If no value was found and a static default value was returned instead.

STATIC: "static";