import Foundation struct ServicePoint: Identifiable, Codable, Hashable { let id: String let name: String let businessId: String enum CodingKeys: String, CodingKey { case id = "ID" case name = "Name" case businessId = "BusinessID" } }