DBTEAMLOGPaperContentRemoveFromFolderDetails

Objective-C

@interface DBTEAMLOGPaperContentRemoveFromFolderDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGPaperContentRemoveFromFolderDetails : NSObject, DBSerializable, NSCopying

The PaperContentRemoveFromFolderDetails struct.

Removed Paper doc/folder from folder.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • 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, nullable) NSNumber *targetAssetIndex;

    Swift

    var targetAssetIndex: NSNumber? { get }
  • Parent asset position in the Assets list.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSNumber *parentAssetIndex;

    Swift

    var parentAssetIndex: NSNumber? { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid
                             targetAssetIndex:(nullable NSNumber *)targetAssetIndex
                             parentAssetIndex:(nullable 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.

  • Convenience constructor (exposes only non-nullable instance variables with no default value).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid;

    Swift

    init(eventUuid: String)

    Parameters

    eventUuid

    Event unique identifier.

    Return Value

    An initialized instance.