DBFILESAddTagError
Objective-C
@interface DBFILESAddTagError : NSObject <DBSerializable, NSCopying>
Swift
class DBFILESAddTagError : NSObject, DBSerializable, NSCopying
The AddTagError union.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Represents the union’s current tag state.
Declaration
Objective-C
@property (nonatomic, readonly) DBFILESAddTagErrorTag tag;Swift
var tag: DBFILESAddTagErrorTag { get } -
(no description). - note: Ensure the
isPathmethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBFILESLookupError *_Nonnull path;Swift
var path: DBFILESLookupError { get }
-
Initializes union class with tag state of “path”.
Declaration
Objective-C
- (nonnull instancetype)initWithPath:(nonnull DBFILESLookupError *)path;Swift
init(path: DBFILESLookupError)Parameters
path(no description).
Return Value
An initialized instance.
-
Initializes union class with tag state of “other”.
Declaration
Objective-C
- (nonnull instancetype)initWithOther;Swift
init(other: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “too_many_tags”.
Description of the “too_many_tags” tag state: The item already has the maximum supported number of tags.
Declaration
Objective-C
- (nonnull instancetype)initWithTooManyTags;Swift
init(tooManyTags: ())Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “path”.
Note
Call this method and ensure it returns true before accessing the
pathproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isPath;Swift
func isPath() -> BoolReturn Value
Whether the union’s current tag state has value “path”.
-
Retrieves whether the union’s current tag state has value “other”.
Declaration
Objective-C
- (BOOL)isOther;Swift
func isOther() -> BoolReturn Value
Whether the union’s current tag state has value “other”.
-
Retrieves whether the union’s current tag state has value “too_many_tags”.
Declaration
Objective-C
- (BOOL)isTooManyTags;Swift
func isTooManyTags() -> BoolReturn Value
Whether the union’s current tag state has value “too_many_tags”.
-
Retrieves string value of union’s current tag state.
Declaration
Objective-C
- (nonnull NSString *)tagName;Swift
func tagName() -> StringReturn Value
A human-readable string representing the union’s current tag state.
View on GitHub
DBFILESAddTagError Class Reference