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