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