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