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