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