DBFILESRelocationBatchErrorEntry
Objective-C
@interface DBFILESRelocationBatchErrorEntry
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBFILESRelocationBatchErrorEntry : NSObject, DBSerializable, NSCopying
                The RelocationBatchErrorEntry 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) DBFILESRelocationBatchErrorEntryTag tag;Swift
var tag: DBFILESRelocationBatchErrorEntryTag { get } - 
                  
                  
User errors that retry won’t help. - note: Ensure the
isRelocationErrormethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBFILESRelocationError *_Nonnull relocationError;Swift
var relocationError: DBFILESRelocationError { get } 
- 
                  
                  
Initializes union class with tag state of “relocation_error”.
Description of the “relocation_error” tag state: User errors that retry won’t help.
Declaration
Objective-C
- (nonnull instancetype)initWithRelocationError: (nonnull DBFILESRelocationError *)relocationError;Swift
init(relocationError: DBFILESRelocationError)Parameters
relocationErrorUser errors that retry won’t help.
Return Value
An initialized instance.
 - 
                  
                  
Initializes union class with tag state of “internal_error”.
Description of the “internal_error” tag state: Something went wrong with the job on Dropbox’s end. You’ll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.
Declaration
Objective-C
- (nonnull instancetype)initWithInternalError;Swift
init(internalError: ())Return Value
An initialized instance.
 - 
                  
                  
Initializes union class with tag state of “too_many_write_operations”.
Description of the “too_many_write_operations” tag state: There are too many write operations in user’s Dropbox. Please retry this request.
Declaration
Objective-C
- (nonnull instancetype)initWithTooManyWriteOperations;Swift
init(tooManyWriteOperations: ())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.
 
- 
                  
                  
Retrieves whether the union’s current tag state has value “relocation_error”.
Note
Call this method and ensure it returns true before accessing the
relocationErrorproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isRelocationError;Swift
func isRelocationError() -> BoolReturn Value
Whether the union’s current tag state has value “relocation_error”.
 - 
                  
                  
Retrieves whether the union’s current tag state has value “internal_error”.
Declaration
Objective-C
- (BOOL)isInternalError;Swift
func isInternalError() -> BoolReturn Value
Whether the union’s current tag state has value “internal_error”.
 - 
                  
                  
Retrieves whether the union’s current tag state has value “too_many_write_operations”.
Declaration
Objective-C
- (BOOL)isTooManyWriteOperations;Swift
func isTooManyWriteOperations() -> BoolReturn Value
Whether the union’s current tag state has value “too_many_write_operations”.
 - 
                  
                  
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 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
        DBFILESRelocationBatchErrorEntry Class Reference