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