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