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