Click or drag to resize

PsrSyncOperation Enumeration

Syncoperation, which should be executed on the server

Namespace:  PsrApi.Data.Enums
Assembly:  PsrApi (in PsrApi.dll) Version: 9.2.2.32703 (27.03.2025)+b9af25405a8dc67f2b73227b442cec4f08fd2d8a
Syntax
C#
public enum PsrSyncOperation
Members
  Member nameValueDescription
None0 Nothing should be done with this item
Add1 Data should be added
Update2 Data should be updated. Ignored if no matching data exists.
UpdateIfTimestampNewer3 Data should be updated, if it is newer then the current Data. Ignored, if no matching data exists.
AddOrUpdate4 Data gets updated if it exists and added if it does not exist
AddOrUpdateIfTimestampNewer5 Data gets added if it does not exist. If the data exists, it only gets updated if it is newer, else it gets ignored
Set6 Only for lists. The list of data will exist exactly the way it is beeing received. If Set exists on one item in a listelement, it behaves like set is set on all list items.
Delete7 Data should be deleted
AddAsHistory8 A historical data should be added
See Also