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