DBTEAMGroupsPollError
Objective-C
@interface DBTEAMGroupsPollError : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMGroupsPollError : NSObject, DBSerializable, NSCopying
The GroupsPollError
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) DBTEAMGroupsPollErrorTag tag;
Swift
var tag: DBTEAMGroupsPollErrorTag { get }
-
Initializes union class with tag state of “invalid_async_job_id”.
Description of the “invalid_async_job_id” tag state: The job ID is invalid.
Declaration
Objective-C
- (nonnull instancetype)initWithInvalidAsyncJobId;
Swift
init(invalidAsyncJobId: ())
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 “other”.
Declaration
Objective-C
- (nonnull instancetype)initWithOther;
Swift
init(other: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “access_denied”.
Description of the “access_denied” tag state: You are not allowed to poll this job.
Declaration
Objective-C
- (nonnull instancetype)initWithAccessDenied;
Swift
init(accessDenied: ())
Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “invalid_async_job_id”.
Declaration
Objective-C
- (BOOL)isInvalidAsyncJobId;
Swift
func isInvalidAsyncJobId() -> Bool
Return Value
Whether the union’s current tag state has value “invalid_async_job_id”.
-
Retrieves whether the union’s current tag state has value “internal_error”.
Declaration
Objective-C
- (BOOL)isInternalError;
Swift
func isInternalError() -> Bool
Return Value
Whether the union’s current tag state has value “internal_error”.
-
Retrieves whether the union’s current tag state has value “other”.
Declaration
Objective-C
- (BOOL)isOther;
Swift
func isOther() -> Bool
Return Value
Whether the union’s current tag state has value “other”.
-
Retrieves whether the union’s current tag state has value “access_denied”.
Declaration
Objective-C
- (BOOL)isAccessDenied;
Swift
func isAccessDenied() -> Bool
Return Value
Whether the union’s current tag state has value “access_denied”.
-
Retrieves string value of union’s current tag state.
Declaration
Objective-C
- (nonnull NSString *)tagName;
Swift
func tagName() -> String
Return Value
A human-readable string representing the union’s current tag state.