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