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