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