Skip to content

Commit

Permalink
change accessibility level of timeSequence property
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyloa committed Oct 13, 2023
1 parent 36bd9b8 commit 24c0322
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DXFeedFramework/Events/Market/Extra/OrderBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class OrderBase: MarketEvent, IIndexedEvent, CustomStringConvertible {
/// Gets or sets time and sequence of this order packaged into single long value
/// This method is intended for efficient order time priority comparison.
/// Do not set their property directly.
public var timeSequence: Int64 = 0
public internal(set) var timeSequence: Long = 0
/// Gets or sets microseconds and nanoseconds time part of this order.
public var timeNanoPart: Int32 = 0
/// Gets or sets time of the last ``action``
Expand Down
2 changes: 1 addition & 1 deletion DXFeedFramework/Events/Market/Extra/TradeBase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class TradeBase: MarketEvent, ILastingEvent {
/// Gets or sets time and sequence of last trade packaged into single long value.
/// Do not set this property directly.
/// Sets ``time`` and/or ``setSequence(_:)``.
public var timeSequence: Long = 0
public internal(set) var timeSequence: Long = 0
/// Gets or sets microseconds and nanoseconds time part of the last trade.
public var timeNanoPart: Int32 = 0
/// Gets or sets exchange code of the last trade.
Expand Down
2 changes: 1 addition & 1 deletion DXFeedFramework/Events/Market/OptionSale.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class OptionSale: MarketEvent, IIndexedEvent {
/// This method is intended for efficient series time priority comparison.
/// **Do not use this method directly**
/// Change ``time`` and/or ``setSequence(_:)``
public var timeSequence: Int64 = 0
public internal(set) var timeSequence: Long = 0
/// Gets or sets microseconds and nanoseconds time part of event.
public var timeNanoPart: Int32 = 0
/// Gets or sets exchange code of this option sale event.
Expand Down
2 changes: 1 addition & 1 deletion DXFeedFramework/Events/Market/Series.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Series: MarketEvent, IIndexedEvent {
/// This method is intended for efficient series time priority comparison.
/// **Do not use this method directly**
/// Change ``time`` and/or ``setSequence(_:)``
public var timeSequence: Long = 0
public internal(set) var timeSequence: Long = 0
/// Gets or sets day id of expiration.
public var expiration: Int32 = 0
/// Gets or sets implied volatility index for this series based on VIX methodology.
Expand Down

0 comments on commit 24c0322

Please sign in to comment.