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