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