This library is auto generated from HL7 FHIR Definitions
```rust use fhir::models::r4::Patient::PatientGender;
fn main() { let mut patientbuilder = crate::models::r4::Patient::PatientBuilder::new(); patientbuilder.active(true); patientbuilder.gender(PatientGender::Male); let patient = patientbuilder.build(); println!("{:?}", patient.tojson().asstr()); } ```
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.