EventItemType
public enum EventItemType
Type of the object modified by the event
-
Folder type
Declaration
Swift
case folder(Folder) -
File type
Declaration
Swift
case file(File) -
Comment type
Declaration
Swift
case comment(Comment) -
User type
Declaration
Swift
case user(User) -
This case is used as a work around to bugs in the enterprise events API where some enterprise event sources don’t correctly map to a specific types. In this case, you should use
rawDatato access the raw JSON directly.Declaration
Swift
case unknown
EventItemType Enumeration Reference