DBFILESImportFormatSerializer
Objective-C
@interface DBFILESImportFormatSerializer : NSObject
Swift
class DBFILESImportFormatSerializer : NSObject
The serialization class for the DBFILESImportFormat union.
-
Serializes
DBFILESImportFormatinstances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBFILESImportFormat *)instance;Swift
class func serialize(_ instance: DBFILESImportFormat) -> [String : Any]?Parameters
instanceAn instance of the
DBFILESImportFormatAPI object.Return Value
A json-compatible dictionary representation of the
DBFILESImportFormatAPI object. -
Deserializes
DBFILESImportFormatinstances.Declaration
Objective-C
+ (nonnull DBFILESImportFormat *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;Swift
class func deserialize(_ dict: [String : Any]) -> DBFILESImportFormatParameters
dictA json-compatible dictionary representation of the
DBFILESImportFormatAPI object.Return Value
An instantiation of the
DBFILESImportFormatobject.
View on GitHub
DBFILESImportFormatSerializer Class Reference