DBTEAMLOGDeviceApprovalsChangeOverageActionDetails
Objective-C
@interface DBTEAMLOGDeviceApprovalsChangeOverageActionDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGDeviceApprovalsChangeOverageActionDetails : NSObject, DBSerializable, NSCopying
The DeviceApprovalsChangeOverageActionDetails
struct.
Changed device approvals setting when member is over limit.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
New over the limits policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMPOLICIESRolloutMethod *dNewValue;
Swift
var dNewValue: DBTEAMPOLICIESRolloutMethod? { get }
-
Previous over the limit policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMPOLICIESRolloutMethod *previousValue;
Swift
var previousValue: DBTEAMPOLICIESRolloutMethod? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nullable DBTEAMPOLICIESRolloutMethod *)dNewValue previousValue:(nullable DBTEAMPOLICIESRolloutMethod *)previousValue;
Swift
init(dNewValue: DBTEAMPOLICIESRolloutMethod?, previousValue: DBTEAMPOLICIESRolloutMethod?)
Parameters
dNewValue
New over the limits policy. Might be missing due to historical data gap.
previousValue
Previous over the limit 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.