// // HealthCareNurse.swift // // Generated by openapi-generator // https://openapi-generator.tech // import Foundation #if canImport(AnyCodable) import AnyCodable #endif public struct HealthCareNurse: Codable, Hashable { public var phone: String? public var name: String? public init(phone: String? = nil, name: String? = nil) { self.phone = phone self.name = name } public enum CodingKeys: String, CodingKey, CaseIterable { case phone case name } // Encodable protocol methods public func encode(to encoder: Encoder) throws { var container = encoder.container(keyedBy: CodingKeys.self) try container.encodeIfPresent(phone, forKey: .phone) try container.encodeIfPresent(name, forKey: .name) } }