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