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