| 12345678910111213141516171819202122232425 |
- import Foundation
- struct FetchedNightscoutProfileStore: JSON {
- let _id: String
- let defaultProfile: String
- let startDate: String
- let mills: Decimal
- let enteredBy: String
- let store: [String: ScheduledNightscoutProfile]
- let created_at: String
- }
- struct FetchedNightscoutProfile: JSON {
- let dia: Decimal
- let carbs_hr: Int
- let delay: Decimal
- let timezone: String
- let target_low: [NightscoutTimevalue]
- let target_high: [NightscoutTimevalue]
- let sens: [NightscoutTimevalue]
- let basal: [NightscoutTimevalue]
- let carbratio: [NightscoutTimevalue]
- let units: String
- }
|