ActorLogInfo
public enum ActorLogInfo : CustomStringConvertible, JSONRepresentable
The entity who performed the action.
-
The admin who did the action.
Declaration
Swift
case admin(TeamLog.UserLogInfo)
-
Anonymous actor.
Declaration
Swift
case anonymous
-
The application who did the action.
Declaration
Swift
case app(TeamLog.AppLogInfo)
-
Action done by Dropbox.
Declaration
Swift
case dropbox
-
Action done by reseller.
Declaration
Swift
case reseller(TeamLog.ResellerLogInfo)
-
The user who did the action.
Declaration
Swift
case user(TeamLog.UserLogInfo)
-
An unspecified error.
Declaration
Swift
case other
-
Declaration
Swift
public var description: String { get }