DBTEAMLOGPaperContentAddToFolderDetails
Objective-C
@interface DBTEAMLOGPaperContentAddToFolderDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPaperContentAddToFolderDetails : NSObject, DBSerializable, NSCopying
The PaperContentAddToFolderDetails
struct.
Added Paper doc/folder to folder.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Event unique identifier.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull eventUuid;
Swift
var eventUuid: String { get }
-
Target asset position in the Assets list.
Declaration
Objective-C
@property (nonatomic, readonly) NSNumber *_Nonnull targetAssetIndex;
Swift
var targetAssetIndex: NSNumber { get }
-
Parent asset position in the Assets list.
Declaration
Objective-C
@property (nonatomic, readonly) NSNumber *_Nonnull parentAssetIndex;
Swift
var parentAssetIndex: NSNumber { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid targetAssetIndex:(nonnull NSNumber *)targetAssetIndex parentAssetIndex:(nonnull NSNumber *)parentAssetIndex;
Swift
init(eventUuid: String, targetAssetIndex: NSNumber, parentAssetIndex: NSNumber)
Parameters
eventUuid
Event unique identifier.
targetAssetIndex
Target asset position in the Assets list.
parentAssetIndex
Parent asset position in the Assets list.
Return Value
An initialized instance.