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