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