DBTEAMMembersGetInfoItem
Objective-C
@interface DBTEAMMembersGetInfoItem : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMMembersGetInfoItem : NSObject, DBSerializable, NSCopying
The MembersGetInfoItem union.
Describes a result obtained for a single user whose id was specified in the
parameter of membersGetInfo.
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) DBTEAMMembersGetInfoItemTag tag;Swift
var tag: DBTEAMMembersGetInfoItemTag { get } -
An ID that was provided as a parameter to
membersGetInfoormembersGetInfo, and did not match a corresponding user. This might be a team_member_id, an email, or an external ID, depending on how the method was called. - note: Ensure theisIdNotFoundmethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull idNotFound;Swift
var idNotFound: String { get } -
Info about a team member. - note: Ensure the
isMemberInfomethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMTeamMemberInfo *_Nonnull memberInfo;Swift
var memberInfo: DBTEAMTeamMemberInfo { get }
-
Initializes union class with tag state of “id_not_found”.
Description of the “id_not_found” tag state: An ID that was provided as a parameter to
membersGetInfoormembersGetInfo, and did not match a corresponding user. This might be a team_member_id, an email, or an external ID, depending on how the method was called.Declaration
Objective-C
- (nonnull instancetype)initWithIdNotFound:(nonnull NSString *)idNotFound;Swift
init(idNotFound: String)Parameters
idNotFoundAn ID that was provided as a parameter to
membersGetInfoormembersGetInfo, and did not match a corresponding user. This might be a team_member_id, an email, or an external ID, depending on how the method was called.Return Value
An initialized instance.
-
Initializes union class with tag state of “member_info”.
Description of the “member_info” tag state: Info about a team member.
Declaration
Objective-C
- (nonnull instancetype)initWithMemberInfo: (nonnull DBTEAMTeamMemberInfo *)memberInfo;Swift
init(memberInfo: DBTEAMTeamMemberInfo)Parameters
memberInfoInfo about a team member.
Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “id_not_found”.
Note
Call this method and ensure it returns true before accessing the
idNotFoundproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isIdNotFound;Swift
func isIdNotFound() -> BoolReturn Value
Whether the union’s current tag state has value “id_not_found”.
-
Retrieves whether the union’s current tag state has value “member_info”.
Note
Call this method and ensure it returns true before accessing the
memberInfoproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isMemberInfo;Swift
func isMemberInfo() -> BoolReturn Value
Whether the union’s current tag state has value “member_info”.
-
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
DBTEAMMembersGetInfoItem Class Reference