ActionDetails
public enum ActionDetails : CustomStringConvertible, JSONRepresentable
Additional information indicating the action taken that caused status change.
-
Define how the user was removed from the team.
Declaration
Swift
case removeAction(TeamLog.MemberRemoveActionType) -
Additional information relevant when someone is invited to the team.
Declaration
Swift
case teamInviteDetails(TeamLog.TeamInviteDetails) -
Additional information relevant when a new member joins the team.
Declaration
Swift
case teamJoinDetails(TeamLog.JoinTeamDetails) -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
ActionDetails Enumeration Reference