DBTEAMLOGQuickActionType

Objective-C

@interface DBTEAMLOGQuickActionType : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGQuickActionType : NSObject, DBSerializable, NSCopying

The QuickActionType union.

Quick action type.

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 “delete_shared_link”.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDeleteSharedLink;

    Swift

    init(deleteSharedLink: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithResetPassword;

    Swift

    init(resetPassword: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithRestoreFileOrFolder;

    Swift

    init(restoreFileOrFolder: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithUnlinkApp;

    Swift

    init(unlinkApp: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithUnlinkDevice;

    Swift

    init(unlinkDevice: ())

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithUnlinkSession;

    Swift

    init(unlinkSession: ())

    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 “delete_shared_link”.

    Declaration

    Objective-C

    - (BOOL)isDeleteSharedLink;

    Swift

    func isDeleteSharedLink() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isResetPassword;

    Swift

    func isResetPassword() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isRestoreFileOrFolder;

    Swift

    func isRestoreFileOrFolder() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isUnlinkApp;

    Swift

    func isUnlinkApp() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isUnlinkDevice;

    Swift

    func isUnlinkDevice() -> Bool

    Return Value

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

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

    Declaration

    Objective-C

    - (BOOL)isUnlinkSession;

    Swift

    func isUnlinkSession() -> Bool

    Return Value

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

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