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