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