DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails
Objective-C
@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails : NSObject, DBSerializable, NSCopying
The WebSessionsChangeFixedLengthPolicyDetails
struct.
Changed how long members can stay signed in to Dropbox.com.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
New session length policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsFixedLengthPolicy *dNewValue;
Swift
var dNewValue: DBTEAMLOGWebSessionsFixedLengthPolicy? { get }
-
Previous session length policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsFixedLengthPolicy *previousValue;
Swift
var previousValue: DBTEAMLOGWebSessionsFixedLengthPolicy? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue: (nullable DBTEAMLOGWebSessionsFixedLengthPolicy *)dNewValue previousValue: (nullable DBTEAMLOGWebSessionsFixedLengthPolicy *)previousValue;
Swift
init(dNewValue: DBTEAMLOGWebSessionsFixedLengthPolicy?, previousValue: DBTEAMLOGWebSessionsFixedLengthPolicy?)
Parameters
dNewValue
New session length policy. Might be missing due to historical data gap.
previousValue
Previous session length 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)initDefault;
Swift
init(default: ())
Return Value
An initialized instance.