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