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