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
folderId
Papers folder Id.
folderName
Paper folder name.
Return Value
An initialized instance.