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