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