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