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