DBTEAMLOGPaperFolderLogInfo
Objective-C
@interface DBTEAMLOGPaperFolderLogInfo : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPaperFolderLogInfo : NSObject, DBSerializable, NSCopying
The PaperFolderLogInfo struct.
Paper folder’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 folder Id.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull folderId;Swift
var folderId: String { get } -
Paper folder name.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull folderName;Swift
var folderName: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithFolderId:(nonnull NSString *)folderId folderName:(nonnull NSString *)folderName;Swift
init(folderId: String, folderName: String)Parameters
folderIdPapers folder Id.
folderNamePaper folder name.
Return Value
An initialized instance.
View on GitHub
DBTEAMLOGPaperFolderLogInfo Class Reference