DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails
Objective-C
@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails : NSObject, DBSerializable, NSCopying
The SharedFolderChangeMembersManagementPolicyDetails
struct.
Changed who can add/remove members of shared folder.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
New members management policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGAclUpdatePolicy *_Nonnull dNewValue;
Swift
var dNewValue: DBSHARINGAclUpdatePolicy { get }
-
Previous members management policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *previousValue;
Swift
var previousValue: DBSHARINGAclUpdatePolicy? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nonnull DBSHARINGAclUpdatePolicy *)dNewValue previousValue:(nullable DBSHARINGAclUpdatePolicy *)previousValue;
Swift
init(dNewValue: DBSHARINGAclUpdatePolicy, previousValue: DBSHARINGAclUpdatePolicy?)
Parameters
dNewValue
New members management policy.
previousValue
Previous members management 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 DBSHARINGAclUpdatePolicy *)dNewValue;
Swift
init(dNewValue: DBSHARINGAclUpdatePolicy)
Parameters
dNewValue
New members management policy.
Return Value
An initialized instance.