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