DBTEAMLOGPermanentDeleteChangePolicyDetails
Objective-C
@interface DBTEAMLOGPermanentDeleteChangePolicyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPermanentDeleteChangePolicyDetails : NSObject, DBSerializable, NSCopying
The PermanentDeleteChangePolicyDetails
struct.
Enabled/disabled ability of team members to permanently delete content.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
New permanent delete content policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGContentPermanentDeletePolicy *_Nonnull dNewValue;
Swift
var dNewValue: DBTEAMLOGContentPermanentDeletePolicy { get }
-
Previous permanent delete content policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGContentPermanentDeletePolicy *previousValue;
Swift
var previousValue: DBTEAMLOGContentPermanentDeletePolicy? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nonnull DBTEAMLOGContentPermanentDeletePolicy *)dNewValue previousValue: (nullable DBTEAMLOGContentPermanentDeletePolicy *)previousValue;
Swift
init(dNewValue: DBTEAMLOGContentPermanentDeletePolicy, previousValue: DBTEAMLOGContentPermanentDeletePolicy?)
Parameters
dNewValue
New permanent delete content policy.
previousValue
Previous permanent delete content 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 DBTEAMLOGContentPermanentDeletePolicy *)dNewValue;
Swift
init(dNewValue: DBTEAMLOGContentPermanentDeletePolicy)
Parameters
dNewValue
New permanent delete content policy.
Return Value
An initialized instance.