DBFILESGetTagsResult
Objective-C
@interface DBFILESGetTagsResult : NSObject <DBSerializable, NSCopying>
                Swift
class DBFILESGetTagsResult : NSObject, DBSerializable, NSCopying
                The GetTagsResult struct.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
List of paths and their corresponding tags.
Declaration
Objective-C
@property (nonatomic, readonly) NSArray<DBFILESPathToTags *> *_Nonnull pathsToTags;Swift
var pathsToTags: [DBFILESPathToTags] { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithPathsToTags: (nonnull NSArray<DBFILESPathToTags *> *)pathsToTags;Swift
init(pathsToTags: [DBFILESPathToTags])Parameters
pathsToTagsList of paths and their corresponding tags.
Return Value
An initialized instance.
 
View on GitHub
        DBFILESGetTagsResult Class Reference