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.

Instance fields

  • 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 }

Constructors

  • 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

    docId

    Papers document Id.

    docTitle

    Paper document title.

    Return Value

    An initialized instance.