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