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