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