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