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