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