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