1# Rdb_ChangeInfo 2 3 4## Overview 5 6Defines a struct for the details about the device-cloud sync process. 7 8**Since**: 11 9 10**Related module**: [RDB](_r_d_b.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| [version](_r_d_b.md#version-23) | Version of the **Rdb_DistributedConfig** struct.| 21| [tableName](_r_d_b.md#tablename) | Name of the table with data changes.| 22| [ChangeType](_r_d_b.md#changetype) | Type of the data changed, which can be data or asset.| 23| [inserted](_r_d_b.md#inserted) | Location where data is inserted. If the primary key of the table is of the string type, the value is the value of the primary key. Otherwise, the value is the row number of the inserted data.| 24| [updated](_r_d_b.md#updated) | Location where data is updated. If the primary key of the table is of the string type, the value is the value of the primary key. Otherwise, the value is the row number of the updated data.| 25| [deleted](_r_d_b.md#deleted) | Location where data is deleted. If the primary key of the table is of the string type, the value is the value of the primary key. Otherwise, the value is the row number of the deleted data.| 26