DBTEAMLOGContextLogInfo
Objective-C
@interface DBTEAMLOGContextLogInfo : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGContextLogInfo : NSObject, DBSerializable, NSCopying
The ContextLogInfo union.
The primary entity on which the action was done.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Represents the union’s current tag state.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGContextLogInfoTag tag;Swift
var tag: DBTEAMLOGContextLogInfoTag { get } -
Action was done on behalf of a non team member. - note: Ensure the
isNonTeamMembermethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGNonTeamMemberLogInfo *_Nonnull nonTeamMember;Swift
var nonTeamMember: DBTEAMLOGNonTeamMemberLogInfo { get } -
Action was done on behalf of a team that’s part of an organization. @note Ensure the
isOrganizationTeammethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGTeamLogInfo *_Nonnull organizationTeam;Swift
var organizationTeam: DBTEAMLOGTeamLogInfo { get } -
Action was done on behalf of a team member. - note: Ensure the
isTeamMembermethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGTeamMemberLogInfo *_Nonnull teamMember;Swift
var teamMember: DBTEAMLOGTeamMemberLogInfo { get } -
Action was done on behalf of a trusted non team member. - note: Ensure the
isTrustedNonTeamMembermethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberLogInfo *_Nonnull trustedNonTeamMember;Swift
var trustedNonTeamMember: DBTEAMLOGTrustedNonTeamMemberLogInfo { get }
-
Initializes union class with tag state of “anonymous”.
Description of the “anonymous” tag state: Anonymous context.
Declaration
Objective-C
- (nonnull instancetype)initWithAnonymous;Swift
init(anonymous: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “non_team_member”.
Description of the “non_team_member” tag state: Action was done on behalf of a non team member.
Declaration
Objective-C
- (nonnull instancetype)initWithNonTeamMember: (nonnull DBTEAMLOGNonTeamMemberLogInfo *)nonTeamMember;Swift
init(nonTeamMember: DBTEAMLOGNonTeamMemberLogInfo)Parameters
nonTeamMemberAction was done on behalf of a non team member.
Return Value
An initialized instance.
-
Initializes union class with tag state of “organization_team”.
Description of the “organization_team” tag state: Action was done on behalf of a team that’s part of an organization.
Declaration
Objective-C
- (nonnull instancetype)initWithOrganizationTeam: (nonnull DBTEAMLOGTeamLogInfo *)organizationTeam;Swift
init(organizationTeam: DBTEAMLOGTeamLogInfo)Parameters
organizationTeamAction was done on behalf of a team that’s part of an organization.
Return Value
An initialized instance.
-
Initializes union class with tag state of “team”.
Description of the “team” tag state: Action was done on behalf of the team.
Declaration
Objective-C
- (nonnull instancetype)initWithTeam;Swift
init(team: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “team_member”.
Description of the “team_member” tag state: Action was done on behalf of a team member.
Declaration
Objective-C
- (nonnull instancetype)initWithTeamMember: (nonnull DBTEAMLOGTeamMemberLogInfo *)teamMember;Swift
init(teamMember: DBTEAMLOGTeamMemberLogInfo)Parameters
teamMemberAction was done on behalf of a team member.
Return Value
An initialized instance.
-
Initializes union class with tag state of “trusted_non_team_member”.
Description of the “trusted_non_team_member” tag state: Action was done on behalf of a trusted non team member.
Declaration
Objective-C
- (nonnull instancetype)initWithTrustedNonTeamMember: (nonnull DBTEAMLOGTrustedNonTeamMemberLogInfo *)trustedNonTeamMember;Swift
init(trustedNonTeamMember: DBTEAMLOGTrustedNonTeamMemberLogInfo)Parameters
trustedNonTeamMemberAction was done on behalf of a trusted non team member.
Return Value
An initialized instance.
-
Initializes union class with tag state of “other”.
Declaration
Objective-C
- (nonnull instancetype)initWithOther;Swift
init(other: ())Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “anonymous”.
Declaration
Objective-C
- (BOOL)isAnonymous;Swift
func isAnonymous() -> BoolReturn Value
Whether the union’s current tag state has value “anonymous”.
-
Retrieves whether the union’s current tag state has value “non_team_member”.
Note
Call this method and ensure it returns true before accessing the
nonTeamMemberproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isNonTeamMember;Swift
func isNonTeamMember() -> BoolReturn Value
Whether the union’s current tag state has value “non_team_member”.
-
Retrieves whether the union’s current tag state has value “organization_team”.
Note
Call this method and ensure it returns true before accessing the
organizationTeamproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isOrganizationTeam;Swift
func isOrganizationTeam() -> BoolReturn Value
Whether the union’s current tag state has value “organization_team”.
-
Retrieves whether the union’s current tag state has value “team”.
Declaration
Objective-C
- (BOOL)isTeam;Swift
func isTeam() -> BoolReturn Value
Whether the union’s current tag state has value “team”.
-
Retrieves whether the union’s current tag state has value “team_member”.
Note
Call this method and ensure it returns true before accessing the
teamMemberproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isTeamMember;Swift
func isTeamMember() -> BoolReturn Value
Whether the union’s current tag state has value “team_member”.
-
Retrieves whether the union’s current tag state has value “trusted_non_team_member”.
Note
Call this method and ensure it returns true before accessing the
trustedNonTeamMemberproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isTrustedNonTeamMember;Swift
func isTrustedNonTeamMember() -> BoolReturn Value
Whether the union’s current tag state has value “trusted_non_team_member”.
-
Retrieves whether the union’s current tag state has value “other”.
Declaration
Objective-C
- (BOOL)isOther;Swift
func isOther() -> BoolReturn Value
Whether the union’s current tag state has value “other”.
-
Retrieves string value of union’s current tag state.
Declaration
Objective-C
- (nonnull NSString *)tagName;Swift
func tagName() -> StringReturn Value
A human-readable string representing the union’s current tag state.
View on GitHub
DBTEAMLOGContextLogInfo Class Reference