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