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