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