DBFILESSearchMatchSerializer
Objective-C
@interface DBFILESSearchMatchSerializer : NSObject
Swift
class DBFILESSearchMatchSerializer : NSObject
The serialization class for the SearchMatch struct.
-
Serializes
DBFILESSearchMatchinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBFILESSearchMatch *)instance;Swift
class func serialize(_ instance: DBFILESSearchMatch) -> [String : Any]?Parameters
instanceAn instance of the
DBFILESSearchMatchAPI object.Return Value
A json-compatible dictionary representation of the
DBFILESSearchMatchAPI object. -
Deserializes
DBFILESSearchMatchinstances.Declaration
Objective-C
+ (nonnull DBFILESSearchMatch *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBFILESSearchMatchParameters
dictA json-compatible dictionary representation of the
DBFILESSearchMatchAPI object.Return Value
An instantiation of the
DBFILESSearchMatchobject.
View on GitHub
DBFILESSearchMatchSerializer Class Reference