DBTEAMLOGSharedContentChangeDownloadsPolicyDetails
Objective-C
@interface DBTEAMLOGSharedContentChangeDownloadsPolicyDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGSharedContentChangeDownloadsPolicyDetails : NSObject, DBSerializable, NSCopying
                The SharedContentChangeDownloadsPolicyDetails struct.
Changed whether members can download shared file/folder.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
New downloads policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGDownloadPolicyType *_Nonnull dNewValue;Swift
var dNewValue: DBTEAMLOGDownloadPolicyType { get } - 
                  
                  
Previous downloads policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGDownloadPolicyType *previousValue;Swift
var previousValue: DBTEAMLOGDownloadPolicyType? { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nonnull DBTEAMLOGDownloadPolicyType *)dNewValue previousValue:(nullable DBTEAMLOGDownloadPolicyType *)previousValue;Swift
init(dNewValue: DBTEAMLOGDownloadPolicyType, previousValue: DBTEAMLOGDownloadPolicyType?)Parameters
dNewValueNew downloads policy.
previousValuePrevious downloads 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 DBTEAMLOGDownloadPolicyType *)dNewValue;Swift
init(dNewValue: DBTEAMLOGDownloadPolicyType)Parameters
dNewValueNew downloads policy.
Return Value
An initialized instance.
 
View on GitHub
        DBTEAMLOGSharedContentChangeDownloadsPolicyDetails Class Reference