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