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