DBTEAMLOGPaperDocumentLogInfo
Objective-C
@interface DBTEAMLOGPaperDocumentLogInfo : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPaperDocumentLogInfo : NSObject, DBSerializable, NSCopying
The PaperDocumentLogInfo struct.
Paper document’s logged information.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Papers document Id.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull docId;Swift
var docId: String { get } -
Paper document title.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull docTitle;Swift
var docTitle: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithDocId:(nonnull NSString *)docId docTitle:(nonnull NSString *)docTitle;Swift
init(docId: String, docTitle: String)Parameters
docIdPapers document Id.
docTitlePaper document title.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGPaperDocumentLogInfo Class Reference