DBTEAMLOGAdminAlertingAlertSensitivity
Objective-C
@interface DBTEAMLOGAdminAlertingAlertSensitivity
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGAdminAlertingAlertSensitivity : NSObject, DBSerializable, NSCopying
The AdminAlertingAlertSensitivity
union.
Alert sensitivity
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) DBTEAMLOGAdminAlertingAlertSensitivityTag tag;
Swift
var tag: DBTEAMLOGAdminAlertingAlertSensitivityTag { get }
-
Initializes union class with tag state of “high”.
Declaration
Objective-C
- (nonnull instancetype)initWithHigh;
Swift
init(high: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “highest”.
Declaration
Objective-C
- (nonnull instancetype)initWithHighest;
Swift
init(highest: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “invalid”.
Declaration
Objective-C
- (nonnull instancetype)initWithInvalid;
Swift
init(invalid: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “low”.
Declaration
Objective-C
- (nonnull instancetype)initWithLow;
Swift
init(low: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “lowest”.
Declaration
Objective-C
- (nonnull instancetype)initWithLowest;
Swift
init(lowest: ())
Return Value
An initialized instance.
-
Initializes union class with tag state of “medium”.
Declaration
Objective-C
- (nonnull instancetype)initWithMedium;
Swift
init(medium: ())
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 “high”.
Declaration
Objective-C
- (BOOL)isHigh;
Swift
func isHigh() -> Bool
Return Value
Whether the union’s current tag state has value “high”.
-
Retrieves whether the union’s current tag state has value “highest”.
Declaration
Objective-C
- (BOOL)isHighest;
Swift
func isHighest() -> Bool
Return Value
Whether the union’s current tag state has value “highest”.
-
Retrieves whether the union’s current tag state has value “invalid”.
Declaration
Objective-C
- (BOOL)isInvalid;
Swift
func isInvalid() -> Bool
Return Value
Whether the union’s current tag state has value “invalid”.
-
Retrieves whether the union’s current tag state has value “low”.
Declaration
Objective-C
- (BOOL)isLow;
Swift
func isLow() -> Bool
Return Value
Whether the union’s current tag state has value “low”.
-
Retrieves whether the union’s current tag state has value “lowest”.
Declaration
Objective-C
- (BOOL)isLowest;
Swift
func isLowest() -> Bool
Return Value
Whether the union’s current tag state has value “lowest”.
-
Retrieves whether the union’s current tag state has value “medium”.
Declaration
Objective-C
- (BOOL)isMedium;
Swift
func isMedium() -> Bool
Return Value
Whether the union’s current tag state has value “medium”.
-
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.