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