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