remoteConfig.ConfigUpdateData interface

The data within Firebase Remote Config update events.

Signature:

export interface ConfigUpdateData 

Properties

PropertyTypeDescription
descriptionstringThe user-provided description of the corresponding Remote Config template.
rollbackSourcenumberOnly present if this version is the result of a rollback, and will be the version number of the Remote Config template that was rolled-back to.
updateOriginConfigUpdateOriginWhere the update action originated.
updateTimestringWhen the Remote Config template was written to the Remote Config server.
updateTypeConfigUpdateTypeWhat type of update was made.
updateUserConfigUserAggregation of all metadata fields about the account that performed the update.
versionNumbernumberThe version number of the version's corresponding Remote Config template.

remoteConfig.ConfigUpdateData.description

The user-provided description of the corresponding Remote Config template.

Signature:

description: string;

remoteConfig.ConfigUpdateData.rollbackSource

Only present if this version is the result of a rollback, and will be the version number of the Remote Config template that was rolled-back to.

Signature:

rollbackSource: number;

remoteConfig.ConfigUpdateData.updateOrigin

Where the update action originated.

Signature:

updateOrigin: ConfigUpdateOrigin;

remoteConfig.ConfigUpdateData.updateTime

When the Remote Config template was written to the Remote Config server.

Signature:

updateTime: string;

remoteConfig.ConfigUpdateData.updateType

What type of update was made.

Signature:

updateType: ConfigUpdateType;

remoteConfig.ConfigUpdateData.updateUser

Aggregation of all metadata fields about the account that performed the update.

Signature:

updateUser: ConfigUser;

remoteConfig.ConfigUpdateData.versionNumber

The version number of the version's corresponding Remote Config template.

Signature:

versionNumber: number;