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