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