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