DBTEAMLOGLegacyDeviceSessionLogInfo
Objective-C
@interface DBTEAMLOGLegacyDeviceSessionLogInfo
: DBTEAMLOGDeviceSessionLogInfo <DBSerializable, NSCopying>
Swift
class DBTEAMLOGLegacyDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo, DBSerializable, NSCopying
The LegacyDeviceSessionLogInfo struct.
Information on sessions, in legacy format
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Session unique id.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo;Swift
var sessionInfo: DBTEAMLOGSessionLogInfo? { get } -
The device name. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *displayName;Swift
var displayName: String? { get } -
Is device managed by emm. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged;Swift
var isEmmManaged: NSNumber? { get } -
Information on the hosting platform. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *platform;Swift
var platform: String? { get } -
The mac address of the last activity from this session. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *macAddress;Swift
var macAddress: String? { get } -
The hosting OS version. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *osVersion;Swift
var osVersion: String? { get } -
Information on the hosting device type. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *deviceType;Swift
var deviceType: String? { get } -
The Dropbox client version. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *clientVersion;Swift
var clientVersion: String? { get } -
Alternative unique device session id, instead of session id field. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *legacyUniqId;Swift
var legacyUniqId: String? { get }
-
-initWithIpAddress:created: updated: sessionInfo: displayName: isEmmManaged: platform: macAddress: osVersion: deviceType: clientVersion: legacyUniqId: Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithIpAddress:(nullable NSString *)ipAddress created:(nullable NSDate *)created updated:(nullable NSDate *)updated sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo displayName:(nullable NSString *)displayName isEmmManaged:(nullable NSNumber *)isEmmManaged platform:(nullable NSString *)platform macAddress:(nullable NSString *)macAddress osVersion:(nullable NSString *)osVersion deviceType:(nullable NSString *)deviceType clientVersion:(nullable NSString *)clientVersion legacyUniqId:(nullable NSString *)legacyUniqId;Swift
init(ipAddress: String?, created: Date?, updated: Date?, sessionInfo: DBTEAMLOGSessionLogInfo?, displayName: String?, isEmmManaged: NSNumber?, platform: String?, macAddress: String?, osVersion: String?, deviceType: String?, clientVersion: String?, legacyUniqId: String?)Parameters
ipAddressThe IP address of the last activity from this session.
createdThe time this session was created.
updatedThe time of the last activity from this session.
sessionInfoSession unique id.
displayNameThe device name. Might be missing due to historical data gap.
isEmmManagedIs device managed by emm. Might be missing due to historical data gap.
platformInformation on the hosting platform. Might be missing due to historical data gap.
macAddressThe mac address of the last activity from this session. Might be missing due to historical data gap.
osVersionThe hosting OS version. Might be missing due to historical data gap.
deviceTypeInformation on the hosting device type. Might be missing due to historical data gap.
clientVersionThe Dropbox client version. Might be missing due to historical data gap.
legacyUniqIdAlternative unique device session id, instead of session id field. Might be missing due to historical data gap.
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.
View on GitHub
DBTEAMLOGLegacyDeviceSessionLogInfo Class Reference