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