DBTEAMLOGFolderOverviewItemPinnedDetails

Objective-C

@interface DBTEAMLOGFolderOverviewItemPinnedDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGFolderOverviewItemPinnedDetails : NSObject, DBSerializable, NSCopying

The FolderOverviewItemPinnedDetails struct.

Pinned item to folder overview.

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

Instance fields

  • Folder Overview location position in the Assets list.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSNumber *_Nonnull folderOverviewLocationAsset;

    Swift

    var folderOverviewLocationAsset: NSNumber { get }
  • Pinned items positions in the Assets list.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<NSNumber *> *_Nonnull pinnedItemsAssetIndices;

    Swift

    var pinnedItemsAssetIndices: [NSNumber] { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithFolderOverviewLocationAsset:
                                (nonnull NSNumber *)folderOverviewLocationAsset
                                        pinnedItemsAssetIndices:
                                            (nonnull NSArray<NSNumber *> *)
                                                pinnedItemsAssetIndices;

    Swift

    init(folderOverviewLocationAsset: NSNumber, pinnedItemsAssetIndices: [NSNumber])

    Parameters

    folderOverviewLocationAsset

    Folder Overview location position in the Assets list.

    pinnedItemsAssetIndices

    Pinned items positions in the Assets list.

    Return Value

    An initialized instance.