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