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