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