DBTEAMLOGMobileDeviceSessionLogInfoSerializer
Objective-C
@interface DBTEAMLOGMobileDeviceSessionLogInfoSerializer : NSObject
Swift
class DBTEAMLOGMobileDeviceSessionLogInfoSerializer : NSObject
The serialization class for the MobileDeviceSessionLogInfo
struct.
-
Serializes
DBTEAMLOGMobileDeviceSessionLogInfo
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGMobileDeviceSessionLogInfo *)instance;
Swift
class func serialize(_ instance: DBTEAMLOGMobileDeviceSessionLogInfo) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMLOGMobileDeviceSessionLogInfo
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGMobileDeviceSessionLogInfo
API object. -
Deserializes
DBTEAMLOGMobileDeviceSessionLogInfo
instances.Declaration
Objective-C
+ (nonnull DBTEAMLOGMobileDeviceSessionLogInfo *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGMobileDeviceSessionLogInfo
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMLOGMobileDeviceSessionLogInfo
API object.Return Value
An instantiation of the
DBTEAMLOGMobileDeviceSessionLogInfo
object.