DBPAPERFolderSerializer
Objective-C
@interface DBPAPERFolderSerializer : NSObject
Swift
class DBPAPERFolderSerializer : NSObject
The serialization class for the Folder struct.
-
Serializes
DBPAPERFolderinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBPAPERFolder *)instance;Swift
class func serialize(_ instance: DBPAPERFolder) -> [String : Any]?Parameters
instanceAn instance of the
DBPAPERFolderAPI object.Return Value
A json-compatible dictionary representation of the
DBPAPERFolderAPI object. -
Deserializes
DBPAPERFolderinstances.Declaration
Objective-C
+ (nonnull DBPAPERFolder *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBPAPERFolderParameters
dictA json-compatible dictionary representation of the
DBPAPERFolderAPI object.Return Value
An instantiation of the
DBPAPERFolderobject.
View on GitHub
DBPAPERFolderSerializer Class Reference