SyncableTypes
public enum SyncableTypes
This enable to sync entity with condition.
-
Sync all
assets
and allentries
of all content types.Declaration
Swift
case all
-
Enter
content type
UIDs. e.g.,products
. This retrieves published entries of specified content type.Declaration
Swift
case contentType(String)
-
Enter
locale
codes. e.g.,en-us
This retrieves published entries of specific locale.Declaration
Swift
case locale(String)
-
Enter the
start date
. e.g.,Date()
This retrieves published entries starting from a specific date.Declaration
Swift
case startFrom(Date)
-
If you do not specify any value from
PublishType
, it will bring all published entries and published assets. You can pass multiple types as comma-separated values,Declaration
Swift
case publishType(PublishType)