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