DBSHARINGShareFolderJobStatus
Objective-C
@interface DBSHARINGShareFolderJobStatus : NSObject <DBSerializable, NSCopying>
Swift
class DBSHARINGShareFolderJobStatus : NSObject, DBSerializable, NSCopying
The ShareFolderJobStatus 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) DBSHARINGShareFolderJobStatusTag tag;Swift
var tag: DBSHARINGShareFolderJobStatusTag { get } -
The share job has finished. The value is the metadata for the folder. @note Ensure the
isCompletemethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *_Nonnull complete;Swift
var complete: DBSHARINGSharedFolderMetadata { get } -
(no description). - note: Ensure the
isFailedmethod returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBSHARINGShareFolderError *_Nonnull failed;Swift
var failed: DBSHARINGShareFolderError { get }
-
Initializes union class with tag state of “in_progress”.
Description of the “in_progress” tag state: The asynchronous job is still in progress.
Declaration
Objective-C
- (nonnull instancetype)initWithInProgress;Swift
init(inProgress: ())Return Value
An initialized instance.
-
Initializes union class with tag state of “complete”.
Description of the “complete” tag state: The share job has finished. The value is the metadata for the folder.
Declaration
Objective-C
- (nonnull instancetype)initWithComplete: (nonnull DBSHARINGSharedFolderMetadata *)complete;Swift
init(complete: DBSHARINGSharedFolderMetadata)Parameters
completeThe share job has finished. The value is the metadata for the folder.
Return Value
An initialized instance.
-
Initializes union class with tag state of “failed”.
Declaration
Objective-C
- (nonnull instancetype)initWithFailed: (nonnull DBSHARINGShareFolderError *)failed;Swift
init(failed: DBSHARINGShareFolderError)Parameters
failed(no description).
Return Value
An initialized instance.
-
Retrieves whether the union’s current tag state has value “in_progress”.
Declaration
Objective-C
- (BOOL)isInProgress;Swift
func isInProgress() -> BoolReturn Value
Whether the union’s current tag state has value “in_progress”.
-
Retrieves whether the union’s current tag state has value “complete”.
Note
Call this method and ensure it returns true before accessing the
completeproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isComplete;Swift
func isComplete() -> BoolReturn Value
Whether the union’s current tag state has value “complete”.
-
Retrieves whether the union’s current tag state has value “failed”.
Note
Call this method and ensure it returns true before accessing the
failedproperty, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isFailed;Swift
func isFailed() -> BoolReturn Value
Whether the union’s current tag state has value “failed”.
-
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
DBSHARINGShareFolderJobStatus Class Reference