DBTEAMListMemberDevicesResult
Objective-C
@interface DBTEAMListMemberDevicesResult : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMListMemberDevicesResult : NSObject, DBSerializable, NSCopying
The ListMemberDevicesResult
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
List of web sessions made by this team member.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray<DBTEAMActiveWebSession *> *activeWebSessions;
Swift
var activeWebSessions: [DBTEAMActiveWebSession]? { get }
-
List of desktop clients used by this team member.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray<DBTEAMDesktopClientSession *> *desktopClientSessions;
Swift
var desktopClientSessions: [DBTEAMDesktopClientSession]? { get }
-
List of mobile client used by this team member.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSArray<DBTEAMMobileClientSession *> *mobileClientSessions;
Swift
var mobileClientSessions: [DBTEAMMobileClientSession]? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithActiveWebSessions: (nullable NSArray<DBTEAMActiveWebSession *> *)activeWebSessions desktopClientSessions:(nullable NSArray<DBTEAMDesktopClientSession *> *) desktopClientSessions mobileClientSessions:(nullable NSArray<DBTEAMMobileClientSession *> *) mobileClientSessions;
Swift
init(activeWebSessions: [DBTEAMActiveWebSession]?, desktopClientSessions: [DBTEAMDesktopClientSession]?, mobileClientSessions: [DBTEAMMobileClientSession]?)
Parameters
activeWebSessions
List of web sessions made by this team member.
desktopClientSessions
List of desktop clients used by this team member.
mobileClientSessions
List of mobile client used by this team member.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initDefault;
Swift
init(default: ())
Return Value
An initialized instance.