ContextLogInfo
public enum ContextLogInfo : CustomStringConvertible, JSONRepresentable
The primary entity on which the action was done.
-
Anonymous context.
Declaration
Swift
case anonymous -
Action was done on behalf of a non team member.
Declaration
Swift
case nonTeamMember(TeamLog.NonTeamMemberLogInfo) -
Action was done on behalf of a team that’s part of an organization.
Declaration
Swift
case organizationTeam(TeamLog.TeamLogInfo) -
Action was done on behalf of the team.
Declaration
Swift
case team -
Action was done on behalf of a team member.
Declaration
Swift
case teamMember(TeamLog.TeamMemberLogInfo) -
Action was done on behalf of a trusted non team member.
Declaration
Swift
case trustedNonTeamMember(TeamLog.TrustedNonTeamMemberLogInfo) -
An unspecified error.
Declaration
Swift
case other -
Declaration
Swift
public var description: String { get }
View on GitHub
ContextLogInfo Enumeration Reference