LCIMMessageIntervalBound

Objective-C

@interface LCIMMessageIntervalBound : NSObject

@property (nonatomic, copy, nullable) NSString *messageId;
@property (nonatomic, assign) int64_t timestamp;
@property (nonatomic, assign) BOOL closed;

- (instancetype)initWithMessageId:(nullable NSString *)messageId
                        timestamp:(int64_t)timestamp
                           closed:(BOOL)closed;

@end

Swift

class LCIMMessageIntervalBound : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *messageId

    Swift

    var messageId: String? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic) int64_t timestamp

    Swift

    var timestamp: Int64 { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic) BOOL closed

    Swift

    var closed: Bool { get set }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithMessageId:(nullable NSString *)messageId
                            timestamp:(int64_t)timestamp
                               closed:(BOOL)closed;

    Swift

    init(messageId: String?, timestamp: Int64, closed: Bool)