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