DBTEAMLOGWebSessionsFixedLengthPolicy
Objective-C
@interface DBTEAMLOGWebSessionsFixedLengthPolicy
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGWebSessionsFixedLengthPolicy : NSObject, DBSerializable, NSCopying
The WebSessionsFixedLengthPolicy
union.
Web sessions fixed length policy.
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) DBTEAMLOGWebSessionsFixedLengthPolicyTag tag;
Swift
var tag: DBTEAMLOGWebSessionsFixedLengthPolicyTag { get }
-
Defined fixed session length. - note: Ensure the
isDefined
method returns true before accessing, otherwise a runtime exception will be raised.Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *_Nonnull defined;
Swift
var defined: DBTEAMLOGDurationLogInfo { get }
-
Initializes union class with tag state of “defined”.
Description of the “defined” tag state: Defined fixed session length.
Declaration
Objective-C
- (nonnull instancetype)initWithDefined: (nonnull DBTEAMLOGDurationLogInfo *)defined;
Swift
init(defined: DBTEAMLOGDurationLogInfo)
Parameters
defined
Defined fixed session length.
Return Value
An initialized instance.
-
Initializes union class with tag state of “undefined”.
Description of the “undefined” tag state: Undefined fixed session length.
Declaration
Objective-C
- (nonnull instancetype)initWithUndefined;
Swift
init(undefined: ())
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 “defined”.
Note
Call this method and ensure it returns true before accessing the
defined
property, otherwise a runtime exception will be thrown.Declaration
Objective-C
- (BOOL)isDefined;
Swift
func isDefined() -> Bool
Return Value
Whether the union’s current tag state has value “defined”.
-
Retrieves whether the union’s current tag state has value “undefined”.
Declaration
Objective-C
- (BOOL)isUndefined;
Swift
func isUndefined() -> Bool
Return Value
Whether the union’s current tag state has value “undefined”.
-
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.