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