DBFILESExportErrorSerializer
Objective-C
@interface DBFILESExportErrorSerializer : NSObject
Swift
class DBFILESExportErrorSerializer : NSObject
The serialization class for the DBFILESExportError union.
-
Serializes
DBFILESExportErrorinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBFILESExportError *)instance;Swift
class func serialize(_ instance: DBFILESExportError) -> [String : Any]?Parameters
instanceAn instance of the
DBFILESExportErrorAPI object.Return Value
A json-compatible dictionary representation of the
DBFILESExportErrorAPI object. -
Deserializes
DBFILESExportErrorinstances.Declaration
Objective-C
+ (nonnull DBFILESExportError *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBFILESExportErrorParameters
dictA json-compatible dictionary representation of the
DBFILESExportErrorAPI object.Return Value
An instantiation of the
DBFILESExportErrorobject.
View on GitHub
DBFILESExportErrorSerializer Class Reference