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