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