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