|
ORE Studio 0.0.4
|
Domain event indicating that feature flag data has changed. More...
#include <feature_flags_changed_event.hpp>

Public Attributes | |
| std::chrono::system_clock::time_point | timestamp |
| The timestamp of when the change occurred (in UTC). | |
| std::vector< std::string > | flag_names |
| Names of feature flags that changed. | |
Domain event indicating that feature flag data has changed.
This event is published when any feature flag entity is created, updated, or deleted in the database. Subscribers can use the timestamp to query for changes since that point, and the flag_names to identify which specific flags were affected.
| std::chrono::system_clock::time_point timestamp |
The timestamp of when the change occurred (in UTC).
Clients can use this timestamp to query the database for entities that have changed since this point.
| std::vector<std::string> flag_names |
Names of feature flags that changed.
Contains the names of flags that were created, updated, or deleted. May contain multiple names for batch operations.