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