Continue renaming Id to ID (and similar renames).

This commit is contained in:
Brent Simmons
2023-09-16 22:04:43 -07:00
parent dd8df6e6c5
commit 5e3086667d
60 changed files with 420 additions and 391 deletions

View File

@@ -121,11 +121,11 @@ public struct ReaderAPIAlternateLocation: Codable {
}
public struct ReaderAPIEntryOrigin: Codable {
public let streamId: String?
public let streamID: String?
let title: String?
enum CodingKeys: String, CodingKey {
case streamId = "streamId"
case streamID = "streamId"
case title = "title"
}
}

View File

@@ -82,11 +82,11 @@ public struct ReaderAPISubscription: Codable {
}
public struct ReaderAPICategory: Codable {
public let categoryId: String
public let categoryID: String
let categoryLabel: String
enum CodingKeys: String, CodingKey {
case categoryId = "id"
case categoryID = "id"
case categoryLabel = "label"
}
}