DBTEAMLOGDispositionActionType
Objective-C
@interface DBTEAMLOGDispositionActionType : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGDispositionActionType : NSObject, DBSerializable, NSCopying
The DispositionActionType
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) DBTEAMLOGDispositionActionTypeTag tag;
Swift
var tag: DBTEAMLOGDispositionActionTypeTag { get }
-
Initializes union class with tag state of “automatic_delete”.
Declaration
Objective-C
- (nonnull instancetype)initWithAutomaticDelete;
Swift
init(automaticDelete: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “automatic_permanently_delete”.
Declaration
Objective-C
- (nonnull instancetype)initWithAutomaticPermanentlyDelete;
Swift
init(automaticPermanentlyDelete: ())
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 “automatic_delete”.
Declaration
Objective-C
- (BOOL)isAutomaticDelete;
Swift
func isAutomaticDelete() -> Bool
Return Value
Whether the union’s current tag state has value “automatic_delete”.
-
Retrieves whether the union’s current tag state has value “automatic_permanently_delete”.
Declaration
Objective-C
- (BOOL)isAutomaticPermanentlyDelete;
Swift
func isAutomaticPermanentlyDelete() -> Bool
Return Value
Whether the union’s current tag state has value “automatic_permanently_delete”.
-
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.