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