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