DBFILESGetTagsArg

Objective-C

@interface DBFILESGetTagsArg : NSObject <DBSerializable, NSCopying>

Swift

class DBFILESGetTagsArg : NSObject, DBSerializable, NSCopying

The GetTagsArg struct.

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

Instance fields

  • Path to the items.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<NSString *> *_Nonnull paths;

    Swift

    var paths: [String] { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithPaths:(nonnull NSArray<NSString *> *)paths;

    Swift

    init(paths: [String])

    Parameters

    paths

    Path to the items.

    Return Value

    An initialized instance.