| PsrSyncOperation Enumeration | 
 
                Syncoperation, which should be executed on the server
            
 
    Namespace: 
   PsrApi.Data.Enums
    Assembly:
   PsrApi (in PsrApi.dll) Version: 8.13.13.27522 (14.03.2022)
 Syntax
Syntaxpublic enum PsrSyncOperation
 Members
Members|  | Member name | Value | Description | 
|---|
|  | None | 0 | Nothing should be done with this item | 
|  | Add | 1 | Data should be added | 
|  | Update | 2 | Data should be updated. Ignored if no matching data exists. | 
|  | UpdateIfTimestampNewer | 3 | Data should be updated, if it is newer then the current Data. Ignored, if no matching data exists. | 
|  | AddOrUpdate | 4 | Data gets updated if it exists and added if it does not exist | 
|  | AddOrUpdateIfTimestampNewer | 5 | Data gets added if it does not exist. If the data exists, it only gets updated if it is newer, else it gets ignored | 
|  | Set | 6 | 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. | 
|  | Delete | 7 | Data should be deleted | 
|  | AddAsHistory | 8 | A historical data should be added | 
 See Also
See Also