// // MaternalRhDAntibodyScreeningSectionAllOf.swift // // Generated by openapi-generator // https://openapi-generator.tech // import Foundation public struct MaternalRhDAntibodyScreeningSectionAllOf: Codable { public var bloodSampleTaken: YesNoEnum? public var rhesusType: PosNegEnum? public var irregularBloodGroupAntibodyPresent: PosNegEnum? public init(bloodSampleTaken: YesNoEnum?, rhesusType: PosNegEnum?, irregularBloodGroupAntibodyPresent: PosNegEnum?) { self.bloodSampleTaken = bloodSampleTaken self.rhesusType = rhesusType self.irregularBloodGroupAntibodyPresent = irregularBloodGroupAntibodyPresent } }