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