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