DBFILESUploadSessionStartError

Objective-C

@interface DBFILESUploadSessionStartError : NSObject <DBSerializable, NSCopying>

Swift

class DBFILESUploadSessionStartError : NSObject, DBSerializable, NSCopying

The UploadSessionStartError union.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

Constructors

  • Initializes union class with tag state of “concurrent_session_data_not_allowed”.

    Description of the “concurrent_session_data_not_allowed” tag state: Uploading data not allowed when starting concurrent upload session.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithConcurrentSessionDataNotAllowed;

    Swift

    init(concurrentSessionDataNotAllowed: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “concurrent_session_close_not_allowed”.

    Description of the “concurrent_session_close_not_allowed” tag state: Can not start a closed concurrent upload session.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithConcurrentSessionCloseNotAllowed;

    Swift

    init(concurrentSessionCloseNotAllowed: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “payload_too_large”.

    Description of the “payload_too_large” tag state: The request payload must be at most 150 MB.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithPayloadTooLarge;

    Swift

    init(payloadTooLarge: ())

    Return Value

    An initialized instance.

  • Initializes union class with tag state of “content_hash_mismatch”.

    Description of the “content_hash_mismatch” tag state: The content received by the Dropbox server in this call does not match the provided content hash.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithContentHashMismatch;

    Swift

    init(contentHashMismatch: ())

    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.

Tag state methods

  • Retrieves whether the union’s current tag state has value “concurrent_session_data_not_allowed”.

    Declaration

    Objective-C

    - (BOOL)isConcurrentSessionDataNotAllowed;

    Swift

    func isConcurrentSessionDataNotAllowed() -> Bool

    Return Value

    Whether the union’s current tag state has value “concurrent_session_data_not_allowed”.

  • Retrieves whether the union’s current tag state has value “concurrent_session_close_not_allowed”.

    Declaration

    Objective-C

    - (BOOL)isConcurrentSessionCloseNotAllowed;

    Swift

    func isConcurrentSessionCloseNotAllowed() -> Bool

    Return Value

    Whether the union’s current tag state has value “concurrent_session_close_not_allowed”.

  • Retrieves whether the union’s current tag state has value “payload_too_large”.

    Declaration

    Objective-C

    - (BOOL)isPayloadTooLarge;

    Swift

    func isPayloadTooLarge() -> Bool

    Return Value

    Whether the union’s current tag state has value “payload_too_large”.

  • Retrieves whether the union’s current tag state has value “content_hash_mismatch”.

    Declaration

    Objective-C

    - (BOOL)isContentHashMismatch;

    Swift

    func isContentHashMismatch() -> Bool

    Return Value

    Whether the union’s current tag state has value “content_hash_mismatch”.

  • 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 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.