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