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