DBTEAMLOGSharedLinkChangeExpiryDetails
Objective-C
@interface DBTEAMLOGSharedLinkChangeExpiryDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGSharedLinkChangeExpiryDetails : NSObject, DBSerializable, NSCopying
                The SharedLinkChangeExpiryDetails struct.
Changed shared link expiration date.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
New shared link expiration date. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDate *dNewValue;Swift
var dNewValue: Date? { get } - 
                  
                  
Previous shared link expiration date. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDate *previousValue;Swift
var previousValue: Date? { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithDNewValue:(nullable NSDate *)dNewValue previousValue:(nullable NSDate *)previousValue;Swift
init(dNewValue: Date?, previousValue: Date?)Parameters
dNewValueNew shared link expiration date. Might be missing due to historical data gap.
previousValuePrevious shared link expiration date. 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.
 
View on GitHub
        DBTEAMLOGSharedLinkChangeExpiryDetails Class Reference