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