DBTEAMLOGSharedLinkViewDetails
Objective-C
@interface DBTEAMLOGSharedLinkViewDetails : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGSharedLinkViewDetails : NSObject, DBSerializable, NSCopying
The SharedLinkViewDetails
struct.
Opened shared link.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Shared link owner details. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner;
Swift
var sharedLinkOwner: DBTEAMLOGUserLogInfo? { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithSharedLinkOwner: (nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner;
Swift
init(sharedLinkOwner: DBTEAMLOGUserLogInfo?)
Parameters
sharedLinkOwner
Shared link owner details. 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.