DBTEAMLOGPaperChangeDeploymentPolicyDetails
Objective-C
@interface DBTEAMLOGPaperChangeDeploymentPolicyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPaperChangeDeploymentPolicyDetails : NSObject, DBSerializable, NSCopying
The PaperChangeDeploymentPolicyDetails
struct.
Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members.
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 deployment policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMPOLICIESPaperDeploymentPolicy *_Nonnull dNewValue;
Swift
var dNewValue: DBTEAMPOLICIESPaperDeploymentPolicy { get }
-
Previous Dropbox Paper deployment policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMPOLICIESPaperDeploymentPolicy *previousValue;
Swift
var previousValue: DBTEAMPOLICIESPaperDeploymentPolicy? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nonnull DBTEAMPOLICIESPaperDeploymentPolicy *)dNewValue previousValue: (nullable DBTEAMPOLICIESPaperDeploymentPolicy *)previousValue;
Swift
init(dNewValue: DBTEAMPOLICIESPaperDeploymentPolicy, previousValue: DBTEAMPOLICIESPaperDeploymentPolicy?)
Parameters
dNewValue
New Dropbox Paper deployment policy.
previousValue
Previous Dropbox Paper deployment 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 DBTEAMPOLICIESPaperDeploymentPolicy *)dNewValue;
Swift
init(dNewValue: DBTEAMPOLICIESPaperDeploymentPolicy)
Parameters
dNewValue
New Dropbox Paper deployment policy.
Return Value
An initialized instance.