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