DBTEAMLOGSharedLinkAddExpiryDetails

Objective-C

@interface DBTEAMLOGSharedLinkAddExpiryDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSharedLinkAddExpiryDetails : NSObject, DBSerializable, NSCopying

The SharedLinkAddExpiryDetails struct.

Added 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.

Instance fields

  • New shared link expiration date.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSDate *_Nonnull dNewValue;

    Swift

    var dNewValue: Date { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDNewValue:(nonnull NSDate *)dNewValue;

    Swift

    init(dNewValue: Date)

    Parameters

    dNewValue

    New shared link expiration date.

    Return Value

    An initialized instance.