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