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