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