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