DBFILESSymlinkInfo
Objective-C
@interface DBFILESSymlinkInfo : NSObject <DBSerializable, NSCopying>
Swift
class DBFILESSymlinkInfo : NSObject, DBSerializable, NSCopying
The SymlinkInfo
struct.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
The target this symlink points to.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull target;
Swift
var target: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithTarget:(nonnull NSString *)target;
Swift
init(target: String)
Parameters
target
The target this symlink points to.
Return Value
An initialized instance.