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