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