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