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