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