| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // JournalEntryExerciseMarkerPumpEvent.swift
- // RileyLink
- //
- // Created by Pete Schwamb on 3/8/16.
- // Copyright © 2016 Pete Schwamb. All rights reserved.
- //
- import Foundation
- public struct JournalEntryExerciseMarkerPumpEvent: TimestampedPumpEvent {
- public let length: Int
- public let rawData: Data
- public let timestamp: DateComponents
-
- public init?(availableData: Data, pumpModel: PumpModel) {
- length = 8
-
- guard length <= availableData.count else {
- return nil
- }
- rawData = availableData.subdata(in: 0..<length)
-
- timestamp = DateComponents(pumpEventData: availableData, offset: 2)
- }
-
- public var dictionaryRepresentation: [String: Any] {
- return [
- "_type": "JournalEntryExerciseMarker",
- ]
- }
- }
|