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