DBTEAMLOGTeamDetailsSerializer
Objective-C
@interface DBTEAMLOGTeamDetailsSerializer : NSObject
Swift
class DBTEAMLOGTeamDetailsSerializer : NSObject
The serialization class for the TeamDetails struct.
-
Serializes
DBTEAMLOGTeamDetailsinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMLOGTeamDetails *)instance;Swift
class func serialize(_ instance: DBTEAMLOGTeamDetails) -> [String : Any]?Parameters
instanceAn instance of the
DBTEAMLOGTeamDetailsAPI object.Return Value
A json-compatible dictionary representation of the
DBTEAMLOGTeamDetailsAPI object. -
Deserializes
DBTEAMLOGTeamDetailsinstances.Declaration
Objective-C
+ (nonnull DBTEAMLOGTeamDetails *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMLOGTeamDetailsParameters
dictA json-compatible dictionary representation of the
DBTEAMLOGTeamDetailsAPI object.Return Value
An instantiation of the
DBTEAMLOGTeamDetailsobject.
View on GitHub
DBTEAMLOGTeamDetailsSerializer Class Reference