LCIMMessageInterval
Objective-C
@interface LCIMMessageInterval : NSObject
@property (nonatomic, strong) LCIMMessageIntervalBound *startIntervalBound;
@property (nonatomic, strong, nullable) LCIMMessageIntervalBound *endIntervalBound;
- (instancetype)initWithStartIntervalBound:(LCIMMessageIntervalBound *)startIntervalBound
endIntervalBound:(nullable LCIMMessageIntervalBound *)endIntervalBound;
@end
Swift
class LCIMMessageInterval : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) LCIMMessageIntervalBound *startIntervalBound
Swift
var startIntervalBound: LCIMMessageIntervalBound { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong, nullable) LCIMMessageIntervalBound *endIntervalBound
Swift
var endIntervalBound: LCIMMessageIntervalBound? { get set }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithStartIntervalBound:(LCIMMessageIntervalBound *)startIntervalBound endIntervalBound:(nullable LCIMMessageIntervalBound *)endIntervalBound;
Swift
init(start startIntervalBound: LCIMMessageIntervalBound, end endIntervalBound: LCIMMessageIntervalBound?)