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