DBTEAMLOGSharedFolderChangeLinkPolicyDetails
Objective-C
@interface DBTEAMLOGSharedFolderChangeLinkPolicyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGSharedFolderChangeLinkPolicyDetails : NSObject, DBSerializable, NSCopying
The SharedFolderChangeLinkPolicyDetails
struct.
Changed who can access shared folder via link.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
New shared folder link policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGSharedLinkPolicy *_Nonnull dNewValue;
Swift
var dNewValue: DBSHARINGSharedLinkPolicy { get }
-
Previous shared folder link policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *previousValue;
Swift
var previousValue: DBSHARINGSharedLinkPolicy? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nonnull DBSHARINGSharedLinkPolicy *)dNewValue previousValue:(nullable DBSHARINGSharedLinkPolicy *)previousValue;
Swift
init(dNewValue: DBSHARINGSharedLinkPolicy, previousValue: DBSHARINGSharedLinkPolicy?)
Parameters
dNewValue
New shared folder link policy.
previousValue
Previous shared folder link policy. Might be missing due to historical data gap.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithDNewValue: (nonnull DBSHARINGSharedLinkPolicy *)dNewValue;
Swift
init(dNewValue: DBSHARINGSharedLinkPolicy)
Parameters
dNewValue
New shared folder link policy.
Return Value
An initialized instance.