Identifies a table synchronization type.
public enum ul_table_sync_type
All changed rows are synchronized, which is the default behavior.
This initializer corresponds to the SYNCHRONIZE ON clause in a CREATE TABLE statement.
Table is never synchronized.
This initializer corresponds to the SYNCHRONIZE OFF clause in a CREATE TABLE statement.
Always upload every row, including unchanged rows.
This initializer corresponds to the SYNCHRONIZE ALL clause in a CREATE TABLE statement.
Changes are never uploaded.
This initializer corresponds to the SYNCHRONIZE DOWNLOAD clause in a CREATE TABLE statement.