DBTEAMLOGSharedContentChangeLinkExpiryDetails

Objective-C

@interface DBTEAMLOGSharedContentChangeLinkExpiryDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSharedContentChangeLinkExpiryDetails : NSObject, DBSerializable, NSCopying

The SharedContentChangeLinkExpiryDetails struct.

Changed link expiration of 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.

Instance fields

  • New shared content 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 content 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 }

Constructors

  • 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

    dNewValue

    New shared content link expiration date. Might be missing due to historical data gap.

    previousValue

    Previous shared content 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.