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