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