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