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