#![allow(clippy::too_many_lines)]
use ::core::num::NonZeroU32;
use serde::{Serialize, Deserialize};
#[cfg(feature = "builders")]
use typed_builder::TypedBuilder;
use super::super::codes;
#[allow(unused_imports)]
use crate::{Base64Binary, Date, DateTime, Instant, Time, Integer64};
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Address(pub Box<AddressInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = AddressBuilder),
        build_method(into = Address),
        field_defaults(setter(into)),
    )
)]
pub struct AddressInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[AddressUse](http://hl7.org/fhir/ValueSet/address-use); home | work | temp | old | billing - purpose of this address** \n\n The purpose of this address. \n\n Applications can assume that an address is current unless it explicitly says that it is temporary or old. "
            )
        )
    )]
    #[serde(rename = "use")]
    pub r#use: Option<codes::AddressUse>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_use")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#use_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[AddressType](http://hl7.org/fhir/ValueSet/address-type); postal | physical | both** \n\n Distinguishes between physical addresses (those you can visit) and mailing addresses (e.g. PO Boxes and care-of addresses). Most addresses are both. \n\n The definition of Address states that \"address is intended to describe postal addresses, not physical locations\". However, many applications track whether an address has a dual purpose of being a location that can be visited as well as being a valid delivery destination, and Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource). "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Option<codes::AddressType>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Text representation of the address** \n\n Specifies the entire address as it should be displayed e.g. on a postal label. This may be provided instead of or as well as the specific parts. \n\n Can provide both a text representation and parts. Applications updating an address SHALL ensure that  when both text and parts are present,  no content is included in the text that isn't found in a part. "
            )
        )
    )]
    #[serde(rename = "text")]
    pub text: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_text")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub text_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Street name, number, direction & P.O. Box etc.** \n\n This component contains the house number, apartment number, street name, street direction,  P.O. Box number, delivery hints, and similar address information. \n\n "
            )
        )
    )]
    #[serde(rename = "line")]
    pub line: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_line")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub line_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name of city, town etc.** \n\n The name of the city, town, suburb, village or other community or delivery center. \n\n "
            )
        )
    )]
    #[serde(rename = "city")]
    pub city: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_city")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub city_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **District name (aka county)** \n\n The name of the administrative area (county). \n\n District is sometimes known as county, but in some regions 'county' is used in place of city (municipality), so county name should be conveyed in city instead. "
            )
        )
    )]
    #[serde(rename = "district")]
    pub district: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_district")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub district_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Sub-unit of country (abbreviations ok)** \n\n Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (e.g. US 2 letter state codes). \n\n "
            )
        )
    )]
    #[serde(rename = "state")]
    pub state: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_state")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub state_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Postal code for area** \n\n A postal code designating a region defined by the postal service. \n\n "
            )
        )
    )]
    #[serde(rename = "postalCode")]
    pub postal_code: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_postalCode")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub postal_code_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Country (e.g. may be ISO 3166 2 or 3 letter code)** \n\n Country - a nation as commonly understood or generally accepted. \n\n ISO 3166 2- or 3- letter codes MAY be used in place of a human readable country name. "
            )
        )
    )]
    #[serde(rename = "country")]
    pub country: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_country")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub country_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Time period when address was/is in use** \n\n Time period when address was/is in use. \n\n "
            )
        )
    )]
    #[serde(rename = "period")]
    pub period: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_period")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<FieldExtension>,
}
impl From<AddressInner> for Address {
    fn from(inner: AddressInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Address {
    type Target = AddressInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Address {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Address {
    #[cfg(feature = "builders")]
    pub fn builder() -> AddressBuilder {
        AddressInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Age(pub Box<AgeInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = AgeBuilder),
        build_method(into = Age),
        field_defaults(setter(into)),
    )
)]
pub struct AgeInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<codes::QuantityComparator>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
}
impl From<AgeInner> for Age {
    fn from(inner: AgeInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Age {
    type Target = AgeInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Age {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Age {
    #[cfg(feature = "builders")]
    pub fn builder() -> AgeBuilder {
        AgeInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Annotation(pub Box<AnnotationInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = AnnotationBuilder),
        build_method(into = Annotation),
        field_defaults(setter(into)),
    )
)]
pub struct AnnotationInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Individual responsible for the annotation** \n\n The individual responsible for making the annotation. \n\n Organization is used when there's no need for specific attribution as to who made the comment. "
            )
        )
    )]
    #[serde(flatten)]
    pub author: Option<AnnotationAuthor>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub author_ext: Option<AnnotationAuthorExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **When the annotation was made** \n\n Indicates when this particular annotation was made. \n\n "
            )
        )
    )]
    #[serde(rename = "time")]
    pub time: Option<DateTime>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_time")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub time_ext: Option<FieldExtension>,
    #[serde(rename = "text")]
    pub text: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_text")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub text_ext: Option<FieldExtension>,
}
impl From<AnnotationInner> for Annotation {
    fn from(inner: AnnotationInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Annotation {
    type Target = AnnotationInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Annotation {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Annotation {
    #[cfg(feature = "builders")]
    pub fn builder() -> AnnotationBuilder {
        AnnotationInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum AnnotationAuthor {
    #[serde(rename = "authorReference")]
    Reference(Reference),
    #[serde(rename = "authorString")]
    String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum AnnotationAuthorExtension {
    #[serde(rename = "_authorReference")]
    Reference(FieldExtension),
    #[serde(rename = "_authorString")]
    String(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Attachment(pub Box<AttachmentInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = AttachmentBuilder),
        build_method(into = Attachment),
        field_defaults(setter(into)),
    )
)]
pub struct AttachmentInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MimeType](http://hl7.org/fhir/ValueSet/mimetypes); Mime type of the content, with charset etc.** \n\n Identifies the type of the data in the attachment and allows a method to be chosen to interpret or render the data. Includes mime type parameters such as charset where appropriate. \n\n "
            )
        )
    )]
    #[serde(rename = "contentType")]
    pub content_type: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_contentType")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub content_type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[Language](http://hl7.org/fhir/ValueSet/all-languages); Human language of the content (BCP-47)** \n\n The human language of the content. The value can be any valid value according to BCP 47. \n\n "
            )
        )
    )]
    #[serde(rename = "language")]
    pub language: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_language")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub language_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Data inline, base64ed** \n\n The actual data of the attachment - a sequence of bytes, base64 encoded. \n\n The base64-encoded data SHALL be expressed in the same character set as the base resource XML or JSON. "
            )
        )
    )]
    #[serde(rename = "data")]
    pub data: Option<Base64Binary>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_data")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub data_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Uri where the data can be found** \n\n A location where the data can be accessed. \n\n If both data and url are provided, the url SHALL point to the same content as the data contains. Urls may be relative references or may reference transient locations such as a wrapping envelope using cid: though this has ramifications for using signatures. Relative URLs are interpreted relative to the service url, like a resource reference, rather than relative to the resource itself. If a URL is provided, it SHALL resolve to actual data. "
            )
        )
    )]
    #[serde(rename = "url")]
    pub url: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_url")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub url_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Number of bytes of content (if url provided)** \n\n The number of bytes of data that make up this attachment (before base64 encoding, if that is done). \n\n The number of bytes is redundant if the data is provided as a base64binary, but is useful if the data is provided as a url reference. "
            )
        )
    )]
    #[serde(rename = "size")]
    pub size: Option<Integer64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_size")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub size_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Hash of the data (sha-1, base64ed)** \n\n The calculated hash of the data using SHA-1. Represented using base64. \n\n The hash is calculated on the data prior to base64 encoding, if the data is based64 encoded. The hash is not intended to support digital signatures. Where protection against malicious threats a digital signature should be considered, see [Provenance.signature](provenance-definitions.html#Provenance.signature) for mechanism to protect a resource with a digital signature. "
            )
        )
    )]
    #[serde(rename = "hash")]
    pub hash: Option<Base64Binary>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_hash")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub hash_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Label to display in place of the data** \n\n A label or set of text to display in place of the data. \n\n May sometimes be derived from the source filename. "
            )
        )
    )]
    #[serde(rename = "title")]
    pub title: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_title")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub title_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Date attachment was first created** \n\n The date that the attachment was first created. \n\n "
            )
        )
    )]
    #[serde(rename = "creation")]
    pub creation: Option<DateTime>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_creation")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub creation_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Height of the image in pixels (photo/video)** \n\n Height of the image in pixels (photo/video). \n\n "
            )
        )
    )]
    #[serde(rename = "height")]
    pub height: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_height")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub height_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Width of the image in pixels (photo/video)** \n\n Width of the image in pixels (photo/video). \n\n "
            )
        )
    )]
    #[serde(rename = "width")]
    pub width: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_width")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub width_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Number of frames if > 1 (photo)** \n\n The number of frames in a photo. This is used with a multi-page fax, or an imaging acquisition context that takes multiple slices in a single image, or an animated gif. If there is more than one frame, this SHALL have a value in order to alert interface software that a multi-frame capable rendering widget is required. \n\n if the number of frames is not supplied, the value may be unknown. Applications should not assume that there is only one frame unless it is explicitly stated. "
            )
        )
    )]
    #[serde(rename = "frames")]
    pub frames: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_frames")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub frames_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Length in seconds (audio / video)** \n\n The duration of the recording in seconds - for audio and video. \n\n The duration might differ from occurrencePeriod if recording was paused. "
            )
        )
    )]
    #[serde(rename = "duration")]
    pub duration: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_duration")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub duration_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Number of printed pages** \n\n The number of pages when printed. \n\n "
            )
        )
    )]
    #[serde(rename = "pages")]
    pub pages: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_pages")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub pages_ext: Option<FieldExtension>,
}
impl From<AttachmentInner> for Attachment {
    fn from(inner: AttachmentInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Attachment {
    type Target = AttachmentInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Attachment {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Attachment {
    #[cfg(feature = "builders")]
    pub fn builder() -> AttachmentBuilder {
        AttachmentInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Availability(pub Box<AvailabilityInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = AvailabilityBuilder),
        build_method(into = Availability),
        field_defaults(setter(into)),
    )
)]
pub struct AvailabilityInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Times the {item} is available** \n\n Times the {item} is available. \n\n "
            )
        )
    )]
    #[serde(rename = "availableTime")]
    pub available_time: Vec<Option<AvailabilityAvailableTime>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_availableTime")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub available_time_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Not available during this time due to provided reason** \n\n Not available during this time due to provided reason. \n\n "
            )
        )
    )]
    #[serde(rename = "notAvailableTime")]
    pub not_available_time: Vec<Option<AvailabilityNotAvailableTime>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_notAvailableTime")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub not_available_time_ext: Vec<Option<FieldExtension>>,
}
impl From<AvailabilityInner> for Availability {
    fn from(inner: AvailabilityInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Availability {
    type Target = AvailabilityInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Availability {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Availability {
    #[cfg(feature = "builders")]
    pub fn builder() -> AvailabilityBuilder {
        AvailabilityInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct AvailabilityAvailableTime {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[DaysOfWeek](http://hl7.org/fhir/ValueSet/days-of-week); mon | tue | wed | thu | fri | sat | sun** \n\n mon | tue | wed | thu | fri | sat | sun. \n\n "
            )
        )
    )]
    #[serde(rename = "daysOfWeek")]
    pub days_of_week: Vec<Option<codes::DaysOfWeek>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_daysOfWeek")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub days_of_week_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Always available? i.e. 24 hour service** \n\n Always available? i.e. 24 hour service. \n\n "
            )
        )
    )]
    #[serde(rename = "allDay")]
    pub all_day: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_allDay")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub all_day_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Opening time of day (ignored if allDay = true)** \n\n Opening time of day (ignored if allDay = true). \n\n The timezone is expected to be specified or implied by the context this datatype is used. "
            )
        )
    )]
    #[serde(rename = "availableStartTime")]
    pub available_start_time: Option<Time>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_availableStartTime")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub available_start_time_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Closing time of day (ignored if allDay = true)** \n\n Closing time of day (ignored if allDay = true). \n\n The timezone is expected to be specified or implied by the context this datatype is used. "
            )
        )
    )]
    #[serde(rename = "availableEndTime")]
    pub available_end_time: Option<Time>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_availableEndTime")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub available_end_time_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct AvailabilityNotAvailableTime {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reason presented to the user explaining why time not available** \n\n Reason presented to the user explaining why time not available. \n\n The reason will generally be provided to give the textual reason for displaying when the {item} is not available, e.g. 'Closed public holidays' or 'Independence Day'. In cases such as this, the `during` might not be included and local knowledge would be required in such cases (as don't desire to keep updating when the holiday occurs each year).\n\ne.g.2: 'Closed for maintenance over the summer' for this example you would want to include the `during` period, unless this was a university hospital and the \"summer\" period was well known, but would recommend its inclusion anyway. "
            )
        )
    )]
    #[serde(rename = "description")]
    pub description: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_description")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub description_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Service not available during this period** \n\n Service not available during this period. \n\n "
            )
        )
    )]
    #[serde(rename = "during")]
    pub during: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_during")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub during_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct CodeableConcept(pub Box<CodeableConceptInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = CodeableConceptBuilder),
        build_method(into = CodeableConcept),
        field_defaults(setter(into)),
    )
)]
pub struct CodeableConceptInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Code defined by a terminology system** \n\n A reference to a code defined by a terminology system. \n\n Codes may be defined very casually in enumerations, or code lists, up to very formal definitions such as SNOMED CT - see the HL7 v3 Core Principles for more information.  Ordering of codings is undefined and SHALL NOT be used to infer meaning. Generally, at most only one of the coding values will be labeled as UserSelected = true. "
            )
        )
    )]
    #[serde(rename = "coding")]
    pub coding: Vec<Option<Coding>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_coding")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub coding_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Plain text representation of the concept** \n\n A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user. \n\n Very often the text is the same as a displayName of one of the codings. "
            )
        )
    )]
    #[serde(rename = "text")]
    pub text: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_text")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub text_ext: Option<FieldExtension>,
}
impl From<CodeableConceptInner> for CodeableConcept {
    fn from(inner: CodeableConceptInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for CodeableConcept {
    type Target = CodeableConceptInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for CodeableConcept {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl CodeableConcept {
    #[cfg(feature = "builders")]
    pub fn builder() -> CodeableConceptBuilder {
        CodeableConceptInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct CodeableReference(pub Box<CodeableReferenceInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = CodeableReferenceBuilder),
        build_method(into = CodeableReference),
        field_defaults(setter(into)),
    )
)]
pub struct CodeableReferenceInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reference to a concept (by class)** \n\n A reference to a concept - e.g. the information is identified by its general class to the degree of precision found in the terminology. \n\n "
            )
        )
    )]
    #[serde(rename = "concept")]
    pub concept: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_concept")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub concept_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reference to a resource (by instance)** \n\n A reference to a resource the provides exact details about the information being referenced. \n\n "
            )
        )
    )]
    #[serde(rename = "reference")]
    pub reference: Option<Reference>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_reference")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub reference_ext: Option<FieldExtension>,
}
impl From<CodeableReferenceInner> for CodeableReference {
    fn from(inner: CodeableReferenceInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for CodeableReference {
    type Target = CodeableReferenceInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for CodeableReference {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl CodeableReference {
    #[cfg(feature = "builders")]
    pub fn builder() -> CodeableReferenceBuilder {
        CodeableReferenceInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Coding(pub Box<CodingInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = CodingBuilder),
        build_method(into = Coding),
        field_defaults(setter(into)),
    )
)]
pub struct CodingInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Identity of the terminology system** \n\n The identification of the code system that defines the meaning of the symbol in the code. \n\n The URI may be an OID (urn:oid:...) or a UUID (urn:uuid:...).  OIDs and UUIDs SHALL be references to the HL7 OID registry. Otherwise, the URI should come from HL7's list of FHIR defined special URIs or it should be an absolute reference to some definition that establishes the system clearly and unambiguously. "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_system")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub system_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Version of the system - if relevant** \n\n The version of the code system which was used when choosing this code. Note that a well-maintained code system does not need the version reported, because the meaning of codes is consistent across versions. However this cannot consistently be assured, and when the meaning is not guaranteed to be consistent, the version SHOULD be exchanged. \n\n Where the terminology does not clearly define what string should be used to identify code system versions, the recommendation is to use the date (expressed in FHIR date format) on which that version was officially published as the version date. "
            )
        )
    )]
    #[serde(rename = "version")]
    pub version: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_version")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub version_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Symbol in syntax defined by the system** \n\n A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination). \n\n "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Representation defined by the system** \n\n A representation of the meaning of the code in the system, following the rules of the system. \n\n "
            )
        )
    )]
    #[serde(rename = "display")]
    pub display: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_display")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub display_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **If this coding was chosen directly by the user** \n\n Indicates that this coding was chosen by a user directly - e.g. off a pick list of available items (codes or displays). \n\n Amongst a set of alternatives, a directly chosen code is the most appropriate starting point for new translations. There is some ambiguity about what exactly 'directly chosen' implies, and trading partner agreement may be needed to clarify the use of this element and its consequences more completely. "
            )
        )
    )]
    #[serde(rename = "userSelected")]
    pub user_selected: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_userSelected")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub user_selected_ext: Option<FieldExtension>,
}
impl From<CodingInner> for Coding {
    fn from(inner: CodingInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Coding {
    type Target = CodingInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Coding {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Coding {
    #[cfg(feature = "builders")]
    pub fn builder() -> CodingBuilder {
        CodingInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ContactDetail(pub Box<ContactDetailInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ContactDetailBuilder),
        build_method(into = ContactDetail),
        field_defaults(setter(into)),
    )
)]
pub struct ContactDetailInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name of an individual to contact** \n\n The name of an individual to contact. \n\n If there is no named individual, the telecom information is for the organization as a whole. "
            )
        )
    )]
    #[serde(rename = "name")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_name")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub name_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Contact details for individual or organization** \n\n The contact details for the individual (if a name was provided) or the organization. \n\n "
            )
        )
    )]
    #[serde(rename = "telecom")]
    pub telecom: Vec<Option<ContactPoint>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_telecom")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub telecom_ext: Vec<Option<FieldExtension>>,
}
impl From<ContactDetailInner> for ContactDetail {
    fn from(inner: ContactDetailInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for ContactDetail {
    type Target = ContactDetailInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for ContactDetail {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl ContactDetail {
    #[cfg(feature = "builders")]
    pub fn builder() -> ContactDetailBuilder {
        ContactDetailInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ContactPoint(pub Box<ContactPointInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ContactPointBuilder),
        build_method(into = ContactPoint),
        field_defaults(setter(into)),
    )
)]
pub struct ContactPointInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[ContactPointSystem](http://hl7.org/fhir/ValueSet/contact-point-system); phone | fax | email | pager | url | sms | other** \n\n Telecommunications form for contact point - what communications system is required to make use of the contact. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<codes::ContactPointSystem>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_system")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub system_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The actual contact point details** \n\n The actual contact point details, in a form that is meaningful to the designated communication system (i.e. phone number or email address). \n\n Additional text data such as phone extension numbers, or notes about use of the contact are sometimes included in the value. "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_value")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[ContactPointUse](http://hl7.org/fhir/ValueSet/contact-point-use); home | work | temp | old | mobile - purpose of this contact point** \n\n Identifies the purpose for the contact point. \n\n Applications can assume that a contact is current unless it explicitly says that it is temporary or old. "
            )
        )
    )]
    #[serde(rename = "use")]
    pub r#use: Option<codes::ContactPointUse>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_use")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#use_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Specify preferred order of use (1 = highest)** \n\n Specifies a preferred order in which to use a set of contacts. ContactPoints with lower rank values are more preferred than those with higher rank values. \n\n Note that rank does not necessarily follow the order in which the contacts are represented in the instance.\n\nRanks need not be unique.  E.g. it's possible to have multiple contacts with rank=1.  If the ranks have different systems or uses, this would be interpreted to mean \"X is my most preferred phone number, Y is my most preferred email address\" or \"X is my preferred home email and Y is my preferred work email\".  If the system and use for equally-ranked contacts are the same, then the level of preference is equivalent for both repetitions. \n\nRanks need not be sequential and not all repetitions must have a rank.  For example, it's possible to have 4 contacts with ranks of 2, 5 and two with no rank specified.  That would be interpreted to mean the first is preferred over the second and no preference stated for the remaining contacts. "
            )
        )
    )]
    #[serde(rename = "rank")]
    pub rank: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_rank")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub rank_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Time period when the contact point was/is in use** \n\n Time period when the contact point was/is in use. \n\n "
            )
        )
    )]
    #[serde(rename = "period")]
    pub period: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_period")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<FieldExtension>,
}
impl From<ContactPointInner> for ContactPoint {
    fn from(inner: ContactPointInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for ContactPoint {
    type Target = ContactPointInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for ContactPoint {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl ContactPoint {
    #[cfg(feature = "builders")]
    pub fn builder() -> ContactPointBuilder {
        ContactPointInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Contributor(pub Box<ContributorInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ContributorBuilder),
        build_method(into = Contributor),
        field_defaults(setter(into)),
    )
)]
pub struct ContributorInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "type")]
    pub r#type: codes::ContributorType,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(rename = "name")]
    pub name: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_name")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub name_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Contact details of the contributor** \n\n Contact details to assist a user in finding and communicating with the contributor. \n\n "
            )
        )
    )]
    #[serde(rename = "contact")]
    pub contact: Vec<Option<ContactDetail>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_contact")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub contact_ext: Vec<Option<FieldExtension>>,
}
impl From<ContributorInner> for Contributor {
    fn from(inner: ContributorInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Contributor {
    type Target = ContributorInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Contributor {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Contributor {
    #[cfg(feature = "builders")]
    pub fn builder() -> ContributorBuilder {
        ContributorInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Count(pub Box<CountInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = CountBuilder),
        build_method(into = Count),
        field_defaults(setter(into)),
    )
)]
pub struct CountInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<codes::QuantityComparator>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
}
impl From<CountInner> for Count {
    fn from(inner: CountInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Count {
    type Target = CountInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Count {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Count {
    #[cfg(feature = "builders")]
    pub fn builder() -> CountBuilder {
        CountInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct DataRequirement(pub Box<DataRequirementInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = DataRequirementBuilder),
        build_method(into = DataRequirement),
        field_defaults(setter(into)),
    )
)]
pub struct DataRequirementInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "type")]
    pub r#type: codes::FHIRTypes,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The profile of the required data** \n\n The profile of the required data, specified as the uri of the profile definition. \n\n "
            )
        )
    )]
    #[serde(rename = "profile")]
    pub profile: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_profile")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub profile_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **E.g. Patient, Practitioner, RelatedPerson, Organization, Location, Device** \n\n The intended subjects of the data requirement. If this element is not provided, a Patient subject is assumed. \n\n The subject of a data requirement is critical, as the data being specified is determined with respect to a particular subject. This corresponds roughly to the notion of a Compartment in that it limits what data is available based on its relationship to the subject. In CQL, this corresponds to the context declaration. "
            )
        )
    )]
    #[serde(flatten)]
    pub subject: Option<DataRequirementSubject>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub subject_ext: Option<DataRequirementSubjectExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Indicates specific structure elements that are referenced by the knowledge module** \n\n Indicates that specific elements of the type are referenced by the knowledge module and must be supported by the consumer in order to obtain an effective evaluation. This does not mean that a value is required for this element, only that the consuming system must understand the element and be able to provide values for it if they are available. \n\nThe value of mustSupport SHALL be a FHIRPath resolvable on the type of the DataRequirement. The path SHALL consist only of identifiers, constant indexers, and .resolve() (see the [Simple FHIRPath Profile](fhirpath.html#simple) for full details). \n\n "
            )
        )
    )]
    #[serde(rename = "mustSupport")]
    pub must_support: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_mustSupport")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub must_support_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What codes are expected** \n\n Code filters specify additional constraints on the data, specifying the value set of interest for a particular element of the data. Each code filter defines an additional constraint on the data, i.e. code filters are AND'ed, not OR'ed. \n\n "
            )
        )
    )]
    #[serde(rename = "codeFilter")]
    pub code_filter: Vec<Option<DataRequirementCodeFilter>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_codeFilter")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_filter_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What dates/date ranges are expected** \n\n Date filters specify additional constraints on the data in terms of the applicable date range for specific elements. Each date filter specifies an additional constraint on the data, i.e. date filters are AND'ed, not OR'ed. \n\n "
            )
        )
    )]
    #[serde(rename = "dateFilter")]
    pub date_filter: Vec<Option<DataRequirementDateFilter>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_dateFilter")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub date_filter_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What values are expected** \n\n Value filters specify additional constraints on the data for elements other than code-valued or date-valued. Each value filter specifies an additional constraint on the data (i.e. valueFilters are AND'ed, not OR'ed). \n\n "
            )
        )
    )]
    #[serde(rename = "valueFilter")]
    pub value_filter: Vec<Option<DataRequirementValueFilter>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_valueFilter")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_filter_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Number of results** \n\n Specifies a maximum number of results that are required (uses the _count search parameter). \n\n This element can be used in combination with the sort element to specify quota requirements such as \"the most recent 5\" or \"the highest 5\". "
            )
        )
    )]
    #[serde(rename = "limit")]
    pub limit: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_limit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub limit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Order of the results** \n\n Specifies the order of the results to be returned. \n\n This element can be used in combination with the sort element to specify quota requirements such as \"the most recent 5\" or \"the highest 5\". When multiple sorts are specified, they are applied in the order they appear in the resource. "
            )
        )
    )]
    #[serde(rename = "sort")]
    pub sort: Vec<Option<DataRequirementSort>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_sort")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub sort_ext: Vec<Option<FieldExtension>>,
}
impl From<DataRequirementInner> for DataRequirement {
    fn from(inner: DataRequirementInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for DataRequirement {
    type Target = DataRequirementInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for DataRequirement {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl DataRequirement {
    #[cfg(feature = "builders")]
    pub fn builder() -> DataRequirementBuilder {
        DataRequirementInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DataRequirementSubject {
    #[serde(rename = "subjectCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "subjectReference")]
    Reference(Reference),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DataRequirementSubjectExtension {
    #[serde(rename = "_subjectCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_subjectReference")]
    Reference(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct DataRequirementCodeFilter {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **A code-valued attribute to filter on** \n\n The code-valued attribute of the filter. The specified path SHALL be a FHIRPath resolvable on the specified type of the DataRequirement, and SHALL consist only of identifiers, constant indexers, and .resolve(). The path is allowed to contain qualifiers (.) to traverse sub-elements, as well as indexers ([x]) to traverse multiple-cardinality sub-elements (see the [Simple FHIRPath Profile](fhirpath.html#simple) for full details). Note that the index must be an integer constant. The path must resolve to an element of type code, Coding, or CodeableConcept. \n\n The path attribute contains a [Simple FHIRPath Subset](fhirpath.html#simple) that allows path traversal, but not calculation. "
            )
        )
    )]
    #[serde(rename = "path")]
    pub path: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **A coded (token) parameter to search on** \n\n A token parameter that refers to a search parameter defined on the specified type of the DataRequirement, and which searches on elements of type code, Coding, or CodeableConcept. \n\n "
            )
        )
    )]
    #[serde(rename = "searchParam")]
    pub search_param: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_searchParam")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub search_param_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **ValueSet for the filter** \n\n The valueset for the code filter. The valueSet and code elements are additive. If valueSet is specified, the filter will return only those data items for which the value of the code-valued element specified in the path is a member of the specified valueset. \n\n "
            )
        )
    )]
    #[serde(rename = "valueSet")]
    pub value_set: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_valueSet")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_set_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What code is expected** \n\n The codes for the code filter. If values are given, the filter will return only those data items for which the code-valued attribute specified by the path has a value that is one of the specified codes. If codes are specified in addition to a value set, the filter returns items matching a code in the value set or one of the specified codes. \n\n "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Vec<Option<Coding>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Vec<Option<FieldExtension>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct DataRequirementDateFilter {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **A date-valued attribute to filter on** \n\n The date-valued attribute of the filter. The specified path SHALL be a FHIRPath resolvable on the specified type of the DataRequirement, and SHALL consist only of identifiers, constant indexers, and .resolve(). The path is allowed to contain qualifiers (.) to traverse sub-elements, as well as indexers ([x]) to traverse multiple-cardinality sub-elements (see the [Simple FHIRPath Profile](fhirpath.html#simple) for full details). Note that the index must be an integer constant. The path must resolve to an element of type date, dateTime, Period, Schedule, or Timing. \n\n The path attribute contains a [Simple FHIR Subset](fhirpath.html#simple) that allows path traversal, but not calculation. "
            )
        )
    )]
    #[serde(rename = "path")]
    pub path: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **A date valued parameter to search on** \n\n A date parameter that refers to a search parameter defined on the specified type of the DataRequirement, and which searches on elements of type date, dateTime, Period, Schedule, or Timing. \n\n "
            )
        )
    )]
    #[serde(rename = "searchParam")]
    pub search_param: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_searchParam")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub search_param_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The value of the filter, as a Period, DateTime, or Duration value** \n\n The value of the filter. If period is specified, the filter will return only those data items that fall within the bounds determined by the Period, inclusive of the period boundaries. If dateTime is specified, the filter will return only those data items that are equal to the specified dateTime. If a Duration is specified, the filter will return only those data items that fall within Duration before now. \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub value: Option<DataRequirementDateFilterValue>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<DataRequirementDateFilterValueExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DataRequirementDateFilterValue {
    #[serde(rename = "valueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "valuePeriod")]
    Period(Period),
    #[serde(rename = "valueDuration")]
    Duration(Duration),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DataRequirementDateFilterValueExtension {
    #[serde(rename = "_valueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_valuePeriod")]
    Period(FieldExtension),
    #[serde(rename = "_valueDuration")]
    Duration(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct DataRequirementValueFilter {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **An attribute to filter on** \n\n The attribute of the filter. The specified path SHALL be a FHIRPath resolvable on the specified type of the DataRequirement, and SHALL consist only of identifiers, constant indexers, and .resolve(). The path is allowed to contain qualifiers (.) to traverse sub-elements, as well as indexers ([x]) to traverse multiple-cardinality sub-elements (see the [Simple FHIRPath Profile](fhirpath.html#simple) for full details). Note that the index must be an integer constant. The path must resolve to an element of a type that is comparable to the valueFilter.value[x] element for the filter. \n\n The path attribute contains a [Simple FHIR Subset](fhirpath.html#simple) that allows path traversal, but not calculation. "
            )
        )
    )]
    #[serde(rename = "path")]
    pub path: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **A parameter to search on** \n\n A search parameter defined on the specified type of the DataRequirement, and which searches on elements of a type compatible with the type of the valueFilter.value[x] for the filter. \n\n "
            )
        )
    )]
    #[serde(rename = "searchParam")]
    pub search_param: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_searchParam")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub search_param_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[ValueFilterComparator](http://hl7.org/fhir/ValueSet/value-filter-comparator); eq | gt | lt | ge | le | sa | eb** \n\n The comparator to be used to determine whether the value is matching. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_comparator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub comparator_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The value of the filter, as a Period, DateTime, or Duration value** \n\n The value of the filter. \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub value: Option<DataRequirementValueFilterValue>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<DataRequirementValueFilterValueExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DataRequirementValueFilterValue {
    #[serde(rename = "valueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "valuePeriod")]
    Period(Period),
    #[serde(rename = "valueDuration")]
    Duration(Duration),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DataRequirementValueFilterValueExtension {
    #[serde(rename = "_valueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_valuePeriod")]
    Period(FieldExtension),
    #[serde(rename = "_valueDuration")]
    Duration(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct DataRequirementSort {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "path")]
    pub path: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
    #[serde(rename = "direction")]
    pub direction: codes::SortDirection,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_direction")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub direction_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Distance(pub Box<DistanceInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = DistanceBuilder),
        build_method(into = Distance),
        field_defaults(setter(into)),
    )
)]
pub struct DistanceInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<codes::QuantityComparator>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
}
impl From<DistanceInner> for Distance {
    fn from(inner: DistanceInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Distance {
    type Target = DistanceInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Distance {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Distance {
    #[cfg(feature = "builders")]
    pub fn builder() -> DistanceBuilder {
        DistanceInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Dosage(pub Box<DosageInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = DosageBuilder),
        build_method(into = Dosage),
        field_defaults(setter(into)),
    )
)]
pub struct DosageInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Extensions that cannot be ignored even if unrecognized** \n\n May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself). \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "modifierExtension")]
    pub modifier_extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The order of the dosage instructions** \n\n Indicates the order in which the dosage instructions should be applied or interpreted. \n\n "
            )
        )
    )]
    #[serde(rename = "sequence")]
    pub sequence: Option<i32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_sequence")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub sequence_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Free text dosage instructions e.g. SIG** \n\n Free text dosage instructions e.g. SIG. \n\n "
            )
        )
    )]
    #[serde(rename = "text")]
    pub text: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_text")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub text_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[AdditionalInstruction](http://hl7.org/fhir/ValueSet/additional-instruction-codes); Supplemental instruction or warnings to the patient - e.g. \"with meals\", \"may cause drowsiness\"** \n\n Supplemental instructions to the patient on how to take the medication  (e.g. \"with meals\" or\"take half to one hour before food\") or warnings for the patient about the medication (e.g. \"may cause drowsiness\" or \"avoid exposure of skin to direct sunlight or sunlamps\"). \n\n Information about administration or preparation of the medication (e.g. \"infuse as rapidly as possibly via intraperitoneal port\" or take \"immediately following drug x\") should be populated in dosage.text. "
            )
        )
    )]
    #[serde(rename = "additionalInstruction")]
    pub additional_instruction: Vec<Option<CodeableConcept>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_additionalInstruction")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub additional_instruction_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Patient or consumer oriented instructions** \n\n Instructions in terms that are understood by the patient or consumer. \n\n "
            )
        )
    )]
    #[serde(rename = "patientInstruction")]
    pub patient_instruction: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_patientInstruction")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub patient_instruction_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **When medication should be administered** \n\n When medication should be administered. \n\n This attribute might not always be populated while the Dosage.text is expected to be populated.  If both are populated, then the Dosage.text should reflect the content of the Dosage.timing. "
            )
        )
    )]
    #[serde(rename = "timing")]
    pub timing: Option<Timing>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_timing")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub timing_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Take \"as needed\"** \n\n Indicates whether the Medication is only taken when needed within a specific dosing schedule (Boolean option). \n\n Can express \"as needed\" without a reason by setting the Boolean = True.  In this case the CodeableConcept is not populated. "
            )
        )
    )]
    #[serde(rename = "asNeeded")]
    pub as_needed: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_asNeeded")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub as_needed_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MedicationAsNeededReason](http://hl7.org/fhir/ValueSet/medication-as-needed-reason); Take \"as needed\" (for x)** \n\n Indicates whether the Medication is only taken based on a precondition for taking the Medication (CodeableConcept). \n\n Can express \"as needed\" with a reason by including the CodeableConcept.  In this case the Boolean is assumed to be False, then the dose is given according to the schedule and is not \"prn\" or \"as needed\". "
            )
        )
    )]
    #[serde(rename = "asNeededFor")]
    pub as_needed_for: Vec<Option<CodeableConcept>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_asNeededFor")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub as_needed_for_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MedicationAdministrationSite](http://hl7.org/fhir/ValueSet/approach-site-codes); Body site to administer to** \n\n Body site to administer to. \n\n If the use case requires attributes from the BodySite resource (e.g. to identify and track separately) then use the standard extension [http://hl7.org/fhir/StructureDefinition/bodySite](http://hl7.org/fhir/extensions/StructureDefinition-bodySite.html).  May be a summary code, or a reference to a very precise definition of the location, or both. "
            )
        )
    )]
    #[serde(rename = "site")]
    pub site: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_site")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub site_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[RouteOfAdministration](http://hl7.org/fhir/ValueSet/route-codes); How drug should enter body** \n\n How drug should enter body. \n\n "
            )
        )
    )]
    #[serde(rename = "route")]
    pub route: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_route")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub route_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MedicationAdministrationMethod](http://hl7.org/fhir/ValueSet/administration-method-codes); Technique for administering medication** \n\n Technique for administering medication. \n\n Terminologies used often pre-coordinate this term with the route and or form of administration. "
            )
        )
    )]
    #[serde(rename = "method")]
    pub method: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_method")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub method_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Amount of medication administered, to be administered or typical amount to be administered** \n\n Depending on the resource,this is the amount of medication administered, to  be administered or typical amount to be administered. \n\n "
            )
        )
    )]
    #[serde(rename = "doseAndRate")]
    pub dose_and_rate: Vec<Option<DosageDoseAndRate>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_doseAndRate")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub dose_and_rate_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Upper limit on medication per unit of time** \n\n Upper limit on medication per unit of time. \n\n This is intended for use as an adjunct to the dosage when there is an upper cap.  For example \"2 tablets every 4 hours to a maximum of 8/day\". "
            )
        )
    )]
    #[serde(rename = "maxDosePerPeriod")]
    pub max_dose_per_period: Vec<Option<Ratio>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_maxDosePerPeriod")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_dose_per_period_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Upper limit on medication per administration** \n\n Upper limit on medication per administration. \n\n This is intended for use as an adjunct to the dosage when there is an upper cap.  For example, a body surface area related dose with a maximum amount, such as 1.5 mg/m2 (maximum 2 mg) IV over 5 – 10 minutes would have doseQuantity of 1.5 mg/m2 and maxDosePerAdministration of 2 mg. "
            )
        )
    )]
    #[serde(rename = "maxDosePerAdministration")]
    pub max_dose_per_administration: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_maxDosePerAdministration")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_dose_per_administration_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Upper limit on medication per lifetime of the patient** \n\n Upper limit on medication per lifetime of the patient. \n\n "
            )
        )
    )]
    #[serde(rename = "maxDosePerLifetime")]
    pub max_dose_per_lifetime: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_maxDosePerLifetime")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_dose_per_lifetime_ext: Option<FieldExtension>,
}
impl From<DosageInner> for Dosage {
    fn from(inner: DosageInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Dosage {
    type Target = DosageInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Dosage {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Dosage {
    #[cfg(feature = "builders")]
    pub fn builder() -> DosageBuilder {
        DosageInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct DosageDoseAndRate {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[DoseAndRateType](http://terminology.hl7.org/ValueSet/dose-rate-type); The kind of dose or rate specified** \n\n The kind of dose or rate specified, for example, ordered or calculated. \n\n "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Amount of medication per dose** \n\n Amount of medication per dose. \n\n Note that this specifies the quantity of the specified medication, not the quantity for each active ingredient(s). Each ingredient amount can be communicated in the Medication resource. For example, if one wants to communicate that a tablet was 375 mg, where the dose was one tablet, you can use the Medication resource to document that the tablet was comprised of 375 mg of drug XYZ. Alternatively if the dose was 375 mg, then you may only need to use the Medication resource to indicate this was a tablet. If the example were an IV such as dopamine and you wanted to communicate that 400mg of dopamine was mixed in 500 ml of some IV solution, then this would all be communicated in the Medication resource. If the administration is not intended to be instantaneous (rate is present or timing has a duration), this can be specified to convey the total amount to be administered over the period of time as indicated by the schedule e.g. 500 ml in dose, with timing used to convey that this should be done over 4 hours. "
            )
        )
    )]
    #[serde(flatten)]
    pub dose: Option<DosageDoseAndRateDose>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub dose_ext: Option<DosageDoseAndRateDoseExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Amount of medication per unit of time** \n\n Amount of medication per unit of time. \n\n It is possible to supply both a rate and a doseQuantity to provide full details about how the medication is to be administered and supplied. If the rate is intended to change over time, depending on local rules/regulations, each change should be captured as a new version of the MedicationRequest with an updated rate, or captured with a new MedicationRequest with the new rate.\n\nIt is possible to specify a rate over time (for example, 100 ml/hour) using either the rateRatio and rateQuantity.  The rateQuantity approach requires systems to have the capability to parse UCUM grammar where ml/hour is included rather than a specific ratio where the time is specified as the denominator.  Where a rate such as 500ml over 2 hours is specified, the use of rateRatio may be more semantically correct than specifying using a rateQuantity of 250 mg/hour. "
            )
        )
    )]
    #[serde(flatten)]
    pub rate: Option<DosageDoseAndRateRate>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub rate_ext: Option<DosageDoseAndRateRateExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DosageDoseAndRateDose {
    #[serde(rename = "doseRange")]
    Range(Range),
    #[serde(rename = "doseQuantity")]
    Quantity(Quantity),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DosageDoseAndRateDoseExtension {
    #[serde(rename = "_doseRange")]
    Range(FieldExtension),
    #[serde(rename = "_doseQuantity")]
    Quantity(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DosageDoseAndRateRate {
    #[serde(rename = "rateRatio")]
    Ratio(Ratio),
    #[serde(rename = "rateRange")]
    Range(Range),
    #[serde(rename = "rateQuantity")]
    Quantity(Quantity),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum DosageDoseAndRateRateExtension {
    #[serde(rename = "_rateRatio")]
    Ratio(FieldExtension),
    #[serde(rename = "_rateRange")]
    Range(FieldExtension),
    #[serde(rename = "_rateQuantity")]
    Quantity(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Duration(pub Box<DurationInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = DurationBuilder),
        build_method(into = Duration),
        field_defaults(setter(into)),
    )
)]
pub struct DurationInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<codes::QuantityComparator>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
}
impl From<DurationInner> for Duration {
    fn from(inner: DurationInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Duration {
    type Target = DurationInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Duration {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Duration {
    #[cfg(feature = "builders")]
    pub fn builder() -> DurationBuilder {
        DurationInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ElementDefinition(pub Box<ElementDefinitionInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ElementDefinitionBuilder),
        build_method(into = ElementDefinition),
        field_defaults(setter(into)),
    )
)]
pub struct ElementDefinitionInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Extensions that cannot be ignored even if unrecognized** \n\n May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself). \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "modifierExtension")]
    pub modifier_extension: Vec<Extension>,
    #[serde(rename = "path")]
    pub path: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[PropertyRepresentation](http://hl7.org/fhir/ValueSet/property-representation); xmlAttr | xmlText | typeAttr | cdaText | xhtml** \n\n Codes that define how this element is represented in instances, when the deviation varies from the normal case. No extensions are allowed on elements with a representation of 'xmlAttr', no matter what FHIR serialization format is used. \n\n In resources, this is rarely used except for special cases where the representation deviates from the normal, and can only be done in the base standard (and profiles must reproduce what the base standard does). This element is used quite commonly in Logical models when the logical models represent a specific serialization format (e.g. CDA, v2 etc.). "
            )
        )
    )]
    #[serde(rename = "representation")]
    pub representation: Vec<Option<codes::PropertyRepresentation>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_representation")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub representation_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name for this particular element (in a set of slices)** \n\n The name of this element definition slice, when slicing is working. The name must be a token with no dots or spaces. This is a unique name referring to a specific set of constraints applied to this element, used to provide a name to different slices of the same element. \n\n The name SHALL be unique within the structure within the context of the constrained resource element.  (Though to avoid confusion, uniqueness across all elements is recommended.). "
            )
        )
    )]
    #[serde(rename = "sliceName")]
    pub slice_name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_sliceName")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub slice_name_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **If this slice definition constrains an inherited slice definition (or not)** \n\n If true, indicates that this slice definition is constraining a slice definition with the same name in an inherited profile. If false, the slice is not overriding any slice in an inherited profile. If missing, the slice might or might not be overriding a slice in an inherited profile, depending on the sliceName. \n\n If set to true, an ancestor profile SHALL have a slicing definition with this name.  If set to false, no ancestor profile is permitted to have a slicing definition with this name. "
            )
        )
    )]
    #[serde(rename = "sliceIsConstraining")]
    pub slice_is_constraining: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_sliceIsConstraining")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub slice_is_constraining_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name for element to display with or prompt for element** \n\n A single preferred label which is the text to display beside the element indicating its meaning or to use to prompt for the element in a user display or form. \n\n See also the extension [http://hl7.org/fhir/StructureDefinition/elementdefinition-question](http://hl7.org/fhir/extensions/StructureDefinition-elementdefinition-question.html). "
            )
        )
    )]
    #[serde(rename = "label")]
    pub label: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_label")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub label_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[ElementDefinitionCode](http://loinc.org/vs); Corresponding codes in terminologies** \n\n A code that has the same meaning as the element in a particular terminology. \n\n The concept SHALL be properly aligned with the data element definition and other constraints, as defined in the code system, including relationships, of any code listed here.  Where multiple codes exist in a terminology that could correspond to the data element, the most granular code(s) should be selected, so long as they are not more restrictive than the data element itself. The mappings may be used to provide more or less granular or structured equivalences in the code system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Vec<Option<Coding>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **This element is sliced - slices follow** \n\n Indicates that the element is sliced into a set of alternative definitions (i.e. in a structure definition, there are multiple different constraints on a single element in the base resource). Slicing can be used in any resource that has cardinality ..* on the base resource, or any resource with a choice of types. The set of slices is any elements that come after this in the element sequence that have the same path, until a shorter path occurs (the shorter path terminates the set). \n\n The first element in the sequence, the one that carries the slicing, is the definition that applies to all the slices. This is based on the unconstrained element, but can apply any constraints as appropriate. This may include the common constraints on the children of the element. "
            )
        )
    )]
    #[serde(rename = "slicing")]
    pub slicing: Option<ElementDefinitionSlicing>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_slicing")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub slicing_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Concise definition for space-constrained presentation** \n\n A concise description of what this element means (e.g. for use in autogenerated summaries). \n\n It is easy for a different short definition to change the meaning of an element and this can have nasty downstream consequences. Please be careful when providing short definitions in a profile. "
            )
        )
    )]
    #[serde(rename = "short")]
    pub short: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_short")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub short_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Full formal definition as narrative text** \n\n Provides a complete explanation of the meaning of the data element for human readability.  For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource. (Note: The text you are reading is specified in ElementDefinition.definition). \n\n It is easy for a different definition to change the meaning of an element and this can have nasty downstream consequences. Please be careful when providing definitions in a profile. "
            )
        )
    )]
    #[serde(rename = "definition")]
    pub definition: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_definition")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub definition_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Comments about the use of this element** \n\n Explanatory notes and implementation guidance about the data element, including notes about how to use the data properly, exceptions to proper use, etc. (Note: The text you are reading is specified in ElementDefinition.comment). \n\n If it is possible to capture usage rules using constraints, that mechanism should be used in preference to this element. "
            )
        )
    )]
    #[serde(rename = "comment")]
    pub comment: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_comment")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub comment_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Why this resource has been created** \n\n This element is for traceability of why the element was created and why the constraints exist as they do. This may be used to point to source materials or specifications that drove the structure of this element. \n\n This element does not describe the usage of the element (that's done in comments), rather it's for traceability of *why* the element is either needed or why the constraints exist as they do.  This may be used to point to source materials or specifications that drove the structure of this data element. "
            )
        )
    )]
    #[serde(rename = "requirements")]
    pub requirements: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_requirements")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub requirements_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Other names** \n\n Identifies additional names by which this element might also be known. \n\n "
            )
        )
    )]
    #[serde(rename = "alias")]
    pub alias: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_alias")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub alias_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Minimum Cardinality** \n\n The minimum number of times this element SHALL appear in the instance. \n\n "
            )
        )
    )]
    #[serde(rename = "min")]
    pub min: Option<u32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_min")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub min_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Maximum Cardinality (a number or *)** \n\n The maximum number of times this element is permitted to appear in the instance. \n\n "
            )
        )
    )]
    #[serde(rename = "max")]
    pub max: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_max")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Base definition information for tools** \n\n Information about the base definition of the element, provided to make it unnecessary for tools to trace the deviation of the element through the derived and related profiles. When the element definition is not the original definition of an element - e.g. either in a constraint on another type, or for elements from a super type in a snap shot - then the information in provided in the element definition may be different to the base definition. On the original definition of the element, it will be same. \n\n The base information does not carry any information that could not be determined from the path and related profiles, but making this determination requires both that the related profiles are available, and that the algorithm to determine them be available. For tooling simplicity, the base information must always be populated in element definitions in snap shots, even if it is the same. "
            )
        )
    )]
    #[serde(rename = "base")]
    pub base: Option<ElementDefinitionBase>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_base")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub base_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reference to definition of content for the element** \n\n Identifies an element defined elsewhere in the definition whose content rules should be applied to the current element. ContentReferences bring across all the rules that are in the ElementDefinition for the element, including definitions, cardinality constraints, bindings, invariants etc. \n\n ContentReferences can only be defined in specializations, not constrained types, and they cannot be changed and always reference the non-constrained definition. "
            )
        )
    )]
    #[serde(rename = "contentReference")]
    pub content_reference: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_contentReference")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub content_reference_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Data type and Profile for this element** \n\n The data type or resource that the value of this element is permitted to be. \n\n The Type of the element can be left blank in a differential constraint, in which case the type is inherited from the resource. Abstract types are not permitted to appear as a type when multiple types are listed.  (I.e. Abstract types cannot be part of a choice). "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Vec<Option<ElementDefinitionType>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Specified value if missing from instance** \n\n The value that should be used if there is no value stated in the instance (e.g. 'if not otherwise specified, the abstract is false'). \n\n Specifying a default value means that the property can never been unknown - it must always have a value. Further, the default value can never be changed, or changed in constraints on content models. Defining default values creates many difficulties in implementation (e.g. when is a value missing?). For these reasons, default values are (and should be) used extremely sparingly. \n\nNo default values are ever defined in the FHIR specification, nor can they be defined in constraints (\"profiles\") on data types or resources. This element only exists so that default values may be defined in logical models. "
            )
        )
    )]
    #[serde(flatten)]
    pub default_value: Option<ElementDefinitionDefaultValue>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub default_value_ext: Option<ElementDefinitionDefaultValueExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Implicit meaning when this element is missing** \n\n The Implicit meaning that is to be understood when this element is missing (e.g. 'when this element is missing, the period is ongoing'). \n\n Implicit meanings for missing values can only be specified on a resource, data type, or extension definition, and never in a profile that applies to one of these. An implicit meaning for a missing value can never be changed, and specifying one has the consequence that constraining its use in profiles eliminates use cases as possibilities, not merely moving them out of scope. "
            )
        )
    )]
    #[serde(rename = "meaningWhenMissing")]
    pub meaning_when_missing: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_meaningWhenMissing")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub meaning_when_missing_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What the order of the elements means** \n\n If present, indicates that the order of the repeating element has meaning and describes what that meaning is.  If absent, it means that the order of the element has no meaning. \n\n This element can only be asserted on repeating elements and can only be introduced when defining resources or data types.  It can be further refined profiled elements but if absent in the base type, a profile cannot assert meaning. "
            )
        )
    )]
    #[serde(rename = "orderMeaning")]
    pub order_meaning: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_orderMeaning")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub order_meaning_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Value must be exactly this** \n\n Specifies a value that SHALL be exactly the value  for this element in the instance, if present. For purposes of comparison, non-significant whitespace is ignored, and all values must be an exact match (case and accent sensitive). Missing elements/attributes must also be missing. \n\n This is not recommended for Coding and CodeableConcept since these often have highly contextual properties such as version or display. "
            )
        )
    )]
    #[serde(flatten)]
    pub fixed: Option<ElementDefinitionFixed>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub fixed_ext: Option<ElementDefinitionFixedExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Value must have at least these property values** \n\n Specifies a value that each occurrence of the element in the instance SHALL follow - that is, any value in the pattern must be found in the instance, if the element has a value. Other additional values may be found too. This is effectively constraint by example.  \n\nWhen pattern[x] is used to constrain a primitive, it means that the value provided in the pattern[x] must match the instance value exactly.\n\nWhen an element within a pattern[x] is used to constrain an array, it means that each element provided in the pattern[x] must (recursively) match at least one element from the instance array.\n\nWhen pattern[x] is used to constrain a complex object, it means that each property in the pattern must be present in the complex object, and its value must recursively match -- i.e.,\n\n1. If primitive: it must match exactly the pattern value\n2. If a complex object: it must match (recursively) the pattern value\n3. If an array: it must match (recursively) the pattern value\n\nIf a pattern[x] is declared on a repeating element, the pattern applies to all repetitions.  If the desire is for a pattern to apply to only one element or a subset of elements, slicing must be used. See [Examples of Patterns](elementdefinition-examples.html#pattern-examples) for examples of pattern usage and the effect it will have. \n\n Mostly used for fixing values of CodeableConcept. In general, pattern[x] is not intended for use with primitive types, where is has the same meaning as fixed[x]. "
            )
        )
    )]
    #[serde(flatten)]
    pub pattern: Option<ElementDefinitionPattern>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub pattern_ext: Option<ElementDefinitionPatternExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Example value (as defined for type)** \n\n A sample value for this element demonstrating the type of information that would typically be found in the element. \n\n Examples will most commonly be present for data where it's not implicitly obvious from either the data type or value set what the values might be.  (I.e. Example values for dates or quantities would generally be unnecessary.)  If the example value is fully populated, the publication tool can generate an instance automatically. "
            )
        )
    )]
    #[serde(rename = "example")]
    pub example: Vec<Option<ElementDefinitionExample>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_example")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub example_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Minimum Allowed Value (for some types)** \n\n The minimum allowed value for the element. The value is inclusive. This is allowed for the types date, dateTime, instant, time, decimal, integer, and Quantity. \n\n Except for date/date/instant, the type of the minValue[x] SHALL be the same as the specified type of the element. For the date/dateTime/instant values, the type of minValue[x] SHALL be either the same, or a [Duration](datatypes.html#Duration) which specifies a relative time limit to the current time. The duration value is positive, and is subtracted from the current clock to determine the minimum allowable value.   A minimum value for a Quantity is interpreted as a canonical minimum - e.g. you cannot provide 100mg if the minimum value is 10g. "
            )
        )
    )]
    #[serde(flatten)]
    pub min_value: Option<ElementDefinitionMinValue>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub min_value_ext: Option<ElementDefinitionMinValueExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Maximum Allowed Value (for some types)** \n\n The maximum allowed value for the element. The value is inclusive. This is allowed for the types date, dateTime, instant, time, decimal, integer, and Quantity. \n\n Except for date/date/instant, the type of the maxValue[x] SHALL be the same as the specified type of the element. For the date/dateTime/instant values, the type of maxValue[x] SHALL be either the same, or a [Duration](datatypes.html#Duration) which specifies a relative time limit to the current time. The duration value is positive, and is added to the current clock to determine the maximum allowable value.   A maximum value for a Quantity is interpreted as a canonical maximum - e.g. you cannot provide 10g if the maximum value is 50mg. "
            )
        )
    )]
    #[serde(flatten)]
    pub max_value: Option<ElementDefinitionMaxValue>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_value_ext: Option<ElementDefinitionMaxValueExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Max length for string type data** \n\n Indicates the maximum length in characters that is permitted to be present in conformant instances and which is expected to be supported by conformant consumers that support the element. ```textmaxLength``` SHOULD only be used on primitive data types that have a string representation (see [http://hl7.org/fhir/StructureDefinition/structuredefinition-type-characteristics](http://hl7.org/fhir/extensions/StructureDefinition-structuredefinition-type-characteristics.html)). \n\n Receivers are not required to reject instances that exceed the maximum length.  The full length could be stored.  In some cases, data might be truncated, though truncation should be undertaken with care and an understanding of the consequences of doing so. If not specified, there is no conformance expectation for length support. "
            )
        )
    )]
    #[serde(rename = "maxLength")]
    pub max_length: Option<i32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_maxLength")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_length_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reference to invariant about presence** \n\n A reference to an invariant that may make additional statements about the cardinality or value in the instance. \n\n "
            )
        )
    )]
    #[serde(rename = "condition")]
    pub condition: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_condition")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub condition_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Condition that must evaluate to true** \n\n Formal constraints such as co-occurrence and other constraints that can be computationally evaluated within the context of the instance. \n\n Constraints should be declared on the \"context\" element - the lowest element in the hierarchy that is common to all nodes referenced by the constraint. "
            )
        )
    )]
    #[serde(rename = "constraint")]
    pub constraint: Vec<Option<ElementDefinitionConstraint>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_constraint")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub constraint_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **For primitives, that a value must be present - not replaced by an extension** \n\n Specifies for a primitive data type that the value of the data type cannot be replaced by an extension. \n\n Typical extensions that can be provided in place of a the value are [http://hl7.org/fhir/StructureDefinition/data-absent-reason](http://hl7.org/fhir/extensions/StructureDefinition-data-absent-reason.html),  [http://hl7.org/fhir/StructureDefinition/iso21090-nullFlavor](http://hl7.org/fhir/extensions/StructureDefinition-iso21090-nullFlavor.html),  [http://hl7.org/fhir/StructureDefinition/originalText](http://hl7.org/fhir/extensions/StructureDefinition-originalText.html), and [http://hl7.org/fhir/StructureDefinition/cqf-expression](http://hl7.org/fhir/extensions/StructureDefinition-cqf-expression.html). Note that this element has no meaning when a value is provided, and extensions can be provided in addition to a value. "
            )
        )
    )]
    #[serde(rename = "mustHaveValue")]
    pub must_have_value: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_mustHaveValue")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub must_have_value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Extensions that are allowed to replace a primitive value** \n\n Specifies a list of extensions that can appear in place of a primitive value. \n\n if mustHaveValue is true, then this element should not be present, since no extensions are allowed in place of the value. Note that this element has no impact if the value is present. "
            )
        )
    )]
    #[serde(rename = "valueAlternatives")]
    pub value_alternatives: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_valueAlternatives")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_alternatives_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **If the element must be supported (discouraged - see obligations)** \n\n If true, implementations that produce or consume resources SHALL provide \"support\" for the element in some meaningful way. Note that this is being phased out and replaced by obligations (see below).  If false, the element may be ignored and not supported. If false, whether to populate or use the data element in any way is at the discretion of the implementation. \n\n \"Something meaningful\" is context dependent and impossible to describe in the base FHIR specification. For this reason, the mustSupport flag is never set to true by the FHIR specification itself - it is only set to true in profiles.  A profile on a type can always make mustSupport = true if it is false in the base type but cannot make mustSupport = false if it is true in the base type.   This is done in [Resource Profiles](profiling.html#mustsupport), where the profile labels an element as mustSupport=true. When a profile does this, it SHALL also make clear exactly what kind of \"support\" is required, as this can mean many things.    Note that an element that has the property IsModifier is not necessarily a \"key\" element (e.g. one of the important elements to make use of the resource), nor is it automatically mustSupport - however both of these things are more likely to be true for IsModifier elements than for other elements. "
            )
        )
    )]
    #[serde(rename = "mustSupport")]
    pub must_support: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_mustSupport")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub must_support_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **If this modifies the meaning of other elements** \n\n If true, the value of this element affects the interpretation of the element or resource that contains it, and the value of the element cannot be ignored. Typically, this is used for status, negation and qualification codes. The effect of this is that the element cannot be ignored by systems: they SHALL either recognize the element and process it, and/or a pre-determination has been made that it is not relevant to their particular system. When used on the root element in an extension definition, this indicates whether or not the extension is a modifier extension. \n\n Only the definition of an element can set IsModifier true - either the specification itself or where an extension is originally defined. Once set, it cannot be changed in derived profiles (except in the special case of the defining a new extension). An element/extension that has isModifier=true SHOULD also have a minimum cardinality of 1, so that there is no lack of clarity about what to do if it is missing. If it can be missing, the definition SHALL make the meaning of a missing element clear. "
            )
        )
    )]
    #[serde(rename = "isModifier")]
    pub is_modifier: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_isModifier")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub is_modifier_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reason that this element is marked as a modifier** \n\n Explains how that element affects the interpretation of the resource or element that contains it. \n\n "
            )
        )
    )]
    #[serde(rename = "isModifierReason")]
    pub is_modifier_reason: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_isModifierReason")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub is_modifier_reason_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Include when _summary = true?** \n\n Whether the element should be included if a client requests a search with the parameter _summary=true. \n\n Some resources include a set of simple metadata, and some very large data. This element is used to reduce the quantity of data returned in searches. Note that servers may pre-cache summarized resources for optimal performance. When a request is made with _summary=true, serializers only include elements marked as 'isSummary = true'. With a few exceptions (listed below), all datatype properties are included in the summary form. In resource and datatype definitions, if an element has a descendant marked as isSummary=true or if it satisfies both of the following conditions, it must be marked as isSummary=true:\n* is at the root or has a parent that is 'mustSupport'\n* has a minimum cardinality of 1 or is a modifier element\n\nThe following datatype properties are exceptions, and are not marked as isSummary:\n* Attachment.data\n* Signature.data, Signature.targetFormat, Signature.sigFormat\n* Narrative.status, Narrative.div\n* SampledData.data. "
            )
        )
    )]
    #[serde(rename = "isSummary")]
    pub is_summary: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_isSummary")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub is_summary_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **ValueSet details if this is coded** \n\n Binds to a value set if this element is coded (code, Coding, CodeableConcept, Quantity), or the data types (string, uri). \n\n For a CodeableConcept, when no codes are allowed - only text, use a binding of strength \"required\" with a description explaining that no coded values are allowed and what sort of information to put in the \"text\" element. "
            )
        )
    )]
    #[serde(rename = "binding")]
    pub binding: Option<ElementDefinitionBinding>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_binding")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub binding_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Map element to another set of definitions** \n\n Identifies a concept from an external specification that roughly corresponds to this element. \n\n Mappings are not necessarily specific enough for safe translation. "
            )
        )
    )]
    #[serde(rename = "mapping")]
    pub mapping: Vec<Option<ElementDefinitionMapping>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_mapping")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub mapping_ext: Vec<Option<FieldExtension>>,
}
impl From<ElementDefinitionInner> for ElementDefinition {
    fn from(inner: ElementDefinitionInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for ElementDefinition {
    type Target = ElementDefinitionInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for ElementDefinition {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl ElementDefinition {
    #[cfg(feature = "builders")]
    pub fn builder() -> ElementDefinitionBuilder {
        ElementDefinitionInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionSlicing {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Element values that are used to distinguish the slices** \n\n Designates which child elements are used to discriminate between the slices when processing an instance. If one or more discriminators are provided, the value of the child elements in the instance data SHALL completely distinguish which slice the element in the resource matches based on the allowed values for those elements in each of the slices. \n\n If there is no discriminator, the content is hard to process, so this should be avoided. "
            )
        )
    )]
    #[serde(rename = "discriminator")]
    pub discriminator: Vec<Option<ElementDefinitionSlicingDiscriminator>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_discriminator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub discriminator_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Text description of how slicing works (or not)** \n\n A human-readable text description of how the slicing works. If there is no discriminator, this is required to be present to provide whatever information is possible about how the slices can be differentiated. \n\n If it's really not possible to differentiate them, the design should be re-evaluated to make the content usable. "
            )
        )
    )]
    #[serde(rename = "description")]
    pub description: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_description")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub description_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **If elements must be in same order as slices** \n\n If the matching elements have to occur in the same order as defined in the profile. \n\n Order should only be required when it is a pressing concern for presentation. Profile authors should consider making the order a feature of the rules about the narrative, not the rules about the data - requiring ordered data makes the profile much less re-usable. "
            )
        )
    )]
    #[serde(rename = "ordered")]
    pub ordered: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_ordered")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub ordered_ext: Option<FieldExtension>,
    #[serde(rename = "rules")]
    pub rules: codes::SlicingRules,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_rules")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub rules_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionSlicingDiscriminator {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "type")]
    pub r#type: codes::DiscriminatorType,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(rename = "path")]
    pub path: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionBase {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "path")]
    pub path: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_path")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub path_ext: Option<FieldExtension>,
    #[serde(rename = "min")]
    pub min: u32,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_min")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub min_ext: Option<FieldExtension>,
    #[serde(rename = "max")]
    pub max: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_max")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionType {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "code")]
    pub code: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Profiles (StructureDefinition or IG) - one must apply** \n\n Identifies a profile structure or implementation Guide that applies to the datatype this element refers to. If any profiles are specified, then the content must conform to at least one of them. The URL can be a local reference - to a contained StructureDefinition, or a reference to another StructureDefinition or Implementation Guide by a canonical URL. When an implementation guide is specified, the type SHALL conform to at least one profile defined in the implementation guide. \n\n It is possible to profile  backbone element (e.g. part of a resource), using the [http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element](http://hl7.org/fhir/extensions/StructureDefinition-elementdefinition-profile-element.html) extension. "
            )
        )
    )]
    #[serde(rename = "profile")]
    pub profile: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_profile")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub profile_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Profile (StructureDefinition or IG) on the Reference/canonical target - one must apply** \n\n Used when the type is \"Reference\" or \"canonical\", and identifies a profile structure or implementation Guide that applies to the target of the reference this element refers to. If any profiles are specified, then the content must conform to at least one of them. The URL can be a local reference - to a contained StructureDefinition, or a reference to another StructureDefinition or Implementation Guide by a canonical URL. When an implementation guide is specified, the target resource SHALL conform to at least one profile defined in the implementation guide. \n\n "
            )
        )
    )]
    #[serde(rename = "targetProfile")]
    pub target_profile: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_targetProfile")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub target_profile_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[AggregationMode](http://hl7.org/fhir/ValueSet/resource-aggregation-mode); contained | referenced | bundled - how aggregated** \n\n If the type is a reference to another resource, how the resource is or can be aggregated - is it a contained resource, or a reference, and if the context is a bundle, is it included in the bundle. \n\n See [Aggregation Rules](elementdefinition.html#aggregation) for further clarification. "
            )
        )
    )]
    #[serde(rename = "aggregation")]
    pub aggregation: Vec<Option<codes::AggregationMode>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_aggregation")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub aggregation_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[ReferenceVersionRules](http://hl7.org/fhir/ValueSet/reference-version-rules); either | independent | specific** \n\n Whether this reference needs to be version specific or version independent, or whether either can be used. \n\n The base specification never makes a rule as to which form is allowed, but implementation guides may do this. See [Aggregation Rules](elementdefinition.html#aggregation) for further clarification. "
            )
        )
    )]
    #[serde(rename = "versioning")]
    pub versioning: Option<codes::ReferenceVersionRules>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_versioning")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub versioning_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionDefaultValue {
    #[serde(rename = "defaultValueBase64Binary")]
    Base64Binary(Base64Binary),
    #[serde(rename = "defaultValueBoolean")]
    Boolean(bool),
    #[serde(rename = "defaultValueCanonical")]
    Canonical(String),
    #[serde(rename = "defaultValueCode")]
    Code(String),
    #[serde(rename = "defaultValueDate")]
    Date(Date),
    #[serde(rename = "defaultValueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "defaultValueDecimal")]
    Decimal(f64),
    #[serde(rename = "defaultValueId")]
    Id(String),
    #[serde(rename = "defaultValueInstant")]
    Instant(Instant),
    #[serde(rename = "defaultValueInteger")]
    Integer(i32),
    #[serde(rename = "defaultValueInteger64")]
    Integer64(Integer64),
    #[serde(rename = "defaultValueMarkdown")]
    Markdown(String),
    #[serde(rename = "defaultValueOid")]
    Oid(String),
    #[serde(rename = "defaultValuePositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "defaultValueString")]
    String(String),
    #[serde(rename = "defaultValueTime")]
    Time(Time),
    #[serde(rename = "defaultValueUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "defaultValueUri")]
    Uri(String),
    #[serde(rename = "defaultValueUrl")]
    Url(String),
    #[serde(rename = "defaultValueUuid")]
    Uuid(String),
    #[serde(rename = "defaultValueAddress")]
    Address(Address),
    #[serde(rename = "defaultValueAge")]
    Age(Age),
    #[serde(rename = "defaultValueAnnotation")]
    Annotation(Annotation),
    #[serde(rename = "defaultValueAttachment")]
    Attachment(Attachment),
    #[serde(rename = "defaultValueCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "defaultValueCodeableReference")]
    CodeableReference(CodeableReference),
    #[serde(rename = "defaultValueCoding")]
    Coding(Coding),
    #[serde(rename = "defaultValueContactPoint")]
    ContactPoint(ContactPoint),
    #[serde(rename = "defaultValueCount")]
    Count(Count),
    #[serde(rename = "defaultValueDistance")]
    Distance(Distance),
    #[serde(rename = "defaultValueDuration")]
    Duration(Duration),
    #[serde(rename = "defaultValueHumanName")]
    HumanName(HumanName),
    #[serde(rename = "defaultValueIdentifier")]
    Identifier(Identifier),
    #[serde(rename = "defaultValueMoney")]
    Money(Money),
    #[serde(rename = "defaultValuePeriod")]
    Period(Period),
    #[serde(rename = "defaultValueQuantity")]
    Quantity(Quantity),
    #[serde(rename = "defaultValueRange")]
    Range(Range),
    #[serde(rename = "defaultValueRatio")]
    Ratio(Ratio),
    #[serde(rename = "defaultValueRatioRange")]
    RatioRange(RatioRange),
    #[serde(rename = "defaultValueReference")]
    Reference(Reference),
    #[serde(rename = "defaultValueSampledData")]
    SampledData(SampledData),
    #[serde(rename = "defaultValueSignature")]
    Signature(Signature),
    #[serde(rename = "defaultValueTiming")]
    Timing(Timing),
    #[serde(rename = "defaultValueContactDetail")]
    ContactDetail(ContactDetail),
    #[serde(rename = "defaultValueDataRequirement")]
    DataRequirement(DataRequirement),
    #[serde(rename = "defaultValueExpression")]
    Expression(Expression),
    #[serde(rename = "defaultValueParameterDefinition")]
    ParameterDefinition(ParameterDefinition),
    #[serde(rename = "defaultValueRelatedArtifact")]
    RelatedArtifact(RelatedArtifact),
    #[serde(rename = "defaultValueTriggerDefinition")]
    TriggerDefinition(TriggerDefinition),
    #[serde(rename = "defaultValueUsageContext")]
    UsageContext(UsageContext),
    #[serde(rename = "defaultValueAvailability")]
    Availability(Availability),
    #[serde(rename = "defaultValueExtendedContactDetail")]
    ExtendedContactDetail(ExtendedContactDetail),
    #[serde(rename = "defaultValueDosage")]
    Dosage(Dosage),
    #[serde(rename = "defaultValueMeta")]
    Meta(Meta),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionDefaultValueExtension {
    #[serde(rename = "_defaultValueBase64Binary")]
    Base64Binary(FieldExtension),
    #[serde(rename = "_defaultValueBoolean")]
    Boolean(FieldExtension),
    #[serde(rename = "_defaultValueCanonical")]
    Canonical(FieldExtension),
    #[serde(rename = "_defaultValueCode")]
    Code(FieldExtension),
    #[serde(rename = "_defaultValueDate")]
    Date(FieldExtension),
    #[serde(rename = "_defaultValueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_defaultValueDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_defaultValueId")]
    Id(FieldExtension),
    #[serde(rename = "_defaultValueInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_defaultValueInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_defaultValueInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_defaultValueMarkdown")]
    Markdown(FieldExtension),
    #[serde(rename = "_defaultValueOid")]
    Oid(FieldExtension),
    #[serde(rename = "_defaultValuePositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_defaultValueString")]
    String(FieldExtension),
    #[serde(rename = "_defaultValueTime")]
    Time(FieldExtension),
    #[serde(rename = "_defaultValueUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_defaultValueUri")]
    Uri(FieldExtension),
    #[serde(rename = "_defaultValueUrl")]
    Url(FieldExtension),
    #[serde(rename = "_defaultValueUuid")]
    Uuid(FieldExtension),
    #[serde(rename = "_defaultValueAddress")]
    Address(FieldExtension),
    #[serde(rename = "_defaultValueAge")]
    Age(FieldExtension),
    #[serde(rename = "_defaultValueAnnotation")]
    Annotation(FieldExtension),
    #[serde(rename = "_defaultValueAttachment")]
    Attachment(FieldExtension),
    #[serde(rename = "_defaultValueCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_defaultValueCodeableReference")]
    CodeableReference(FieldExtension),
    #[serde(rename = "_defaultValueCoding")]
    Coding(FieldExtension),
    #[serde(rename = "_defaultValueContactPoint")]
    ContactPoint(FieldExtension),
    #[serde(rename = "_defaultValueCount")]
    Count(FieldExtension),
    #[serde(rename = "_defaultValueDistance")]
    Distance(FieldExtension),
    #[serde(rename = "_defaultValueDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_defaultValueHumanName")]
    HumanName(FieldExtension),
    #[serde(rename = "_defaultValueIdentifier")]
    Identifier(FieldExtension),
    #[serde(rename = "_defaultValueMoney")]
    Money(FieldExtension),
    #[serde(rename = "_defaultValuePeriod")]
    Period(FieldExtension),
    #[serde(rename = "_defaultValueQuantity")]
    Quantity(FieldExtension),
    #[serde(rename = "_defaultValueRange")]
    Range(FieldExtension),
    #[serde(rename = "_defaultValueRatio")]
    Ratio(FieldExtension),
    #[serde(rename = "_defaultValueRatioRange")]
    RatioRange(FieldExtension),
    #[serde(rename = "_defaultValueReference")]
    Reference(FieldExtension),
    #[serde(rename = "_defaultValueSampledData")]
    SampledData(FieldExtension),
    #[serde(rename = "_defaultValueSignature")]
    Signature(FieldExtension),
    #[serde(rename = "_defaultValueTiming")]
    Timing(FieldExtension),
    #[serde(rename = "_defaultValueContactDetail")]
    ContactDetail(FieldExtension),
    #[serde(rename = "_defaultValueDataRequirement")]
    DataRequirement(FieldExtension),
    #[serde(rename = "_defaultValueExpression")]
    Expression(FieldExtension),
    #[serde(rename = "_defaultValueParameterDefinition")]
    ParameterDefinition(FieldExtension),
    #[serde(rename = "_defaultValueRelatedArtifact")]
    RelatedArtifact(FieldExtension),
    #[serde(rename = "_defaultValueTriggerDefinition")]
    TriggerDefinition(FieldExtension),
    #[serde(rename = "_defaultValueUsageContext")]
    UsageContext(FieldExtension),
    #[serde(rename = "_defaultValueAvailability")]
    Availability(FieldExtension),
    #[serde(rename = "_defaultValueExtendedContactDetail")]
    ExtendedContactDetail(FieldExtension),
    #[serde(rename = "_defaultValueDosage")]
    Dosage(FieldExtension),
    #[serde(rename = "_defaultValueMeta")]
    Meta(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionFixed {
    #[serde(rename = "fixedBase64Binary")]
    Base64Binary(Base64Binary),
    #[serde(rename = "fixedBoolean")]
    Boolean(bool),
    #[serde(rename = "fixedCanonical")]
    Canonical(String),
    #[serde(rename = "fixedCode")]
    Code(String),
    #[serde(rename = "fixedDate")]
    Date(Date),
    #[serde(rename = "fixedDateTime")]
    DateTime(DateTime),
    #[serde(rename = "fixedDecimal")]
    Decimal(f64),
    #[serde(rename = "fixedId")]
    Id(String),
    #[serde(rename = "fixedInstant")]
    Instant(Instant),
    #[serde(rename = "fixedInteger")]
    Integer(i32),
    #[serde(rename = "fixedInteger64")]
    Integer64(Integer64),
    #[serde(rename = "fixedMarkdown")]
    Markdown(String),
    #[serde(rename = "fixedOid")]
    Oid(String),
    #[serde(rename = "fixedPositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "fixedString")]
    String(String),
    #[serde(rename = "fixedTime")]
    Time(Time),
    #[serde(rename = "fixedUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "fixedUri")]
    Uri(String),
    #[serde(rename = "fixedUrl")]
    Url(String),
    #[serde(rename = "fixedUuid")]
    Uuid(String),
    #[serde(rename = "fixedAddress")]
    Address(Address),
    #[serde(rename = "fixedAge")]
    Age(Age),
    #[serde(rename = "fixedAnnotation")]
    Annotation(Annotation),
    #[serde(rename = "fixedAttachment")]
    Attachment(Attachment),
    #[serde(rename = "fixedCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "fixedCodeableReference")]
    CodeableReference(CodeableReference),
    #[serde(rename = "fixedCoding")]
    Coding(Coding),
    #[serde(rename = "fixedContactPoint")]
    ContactPoint(ContactPoint),
    #[serde(rename = "fixedCount")]
    Count(Count),
    #[serde(rename = "fixedDistance")]
    Distance(Distance),
    #[serde(rename = "fixedDuration")]
    Duration(Duration),
    #[serde(rename = "fixedHumanName")]
    HumanName(HumanName),
    #[serde(rename = "fixedIdentifier")]
    Identifier(Identifier),
    #[serde(rename = "fixedMoney")]
    Money(Money),
    #[serde(rename = "fixedPeriod")]
    Period(Period),
    #[serde(rename = "fixedQuantity")]
    Quantity(Quantity),
    #[serde(rename = "fixedRange")]
    Range(Range),
    #[serde(rename = "fixedRatio")]
    Ratio(Ratio),
    #[serde(rename = "fixedRatioRange")]
    RatioRange(RatioRange),
    #[serde(rename = "fixedReference")]
    Reference(Reference),
    #[serde(rename = "fixedSampledData")]
    SampledData(SampledData),
    #[serde(rename = "fixedSignature")]
    Signature(Signature),
    #[serde(rename = "fixedTiming")]
    Timing(Timing),
    #[serde(rename = "fixedContactDetail")]
    ContactDetail(ContactDetail),
    #[serde(rename = "fixedDataRequirement")]
    DataRequirement(DataRequirement),
    #[serde(rename = "fixedExpression")]
    Expression(Expression),
    #[serde(rename = "fixedParameterDefinition")]
    ParameterDefinition(ParameterDefinition),
    #[serde(rename = "fixedRelatedArtifact")]
    RelatedArtifact(RelatedArtifact),
    #[serde(rename = "fixedTriggerDefinition")]
    TriggerDefinition(TriggerDefinition),
    #[serde(rename = "fixedUsageContext")]
    UsageContext(UsageContext),
    #[serde(rename = "fixedAvailability")]
    Availability(Availability),
    #[serde(rename = "fixedExtendedContactDetail")]
    ExtendedContactDetail(ExtendedContactDetail),
    #[serde(rename = "fixedDosage")]
    Dosage(Dosage),
    #[serde(rename = "fixedMeta")]
    Meta(Meta),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionFixedExtension {
    #[serde(rename = "_fixedBase64Binary")]
    Base64Binary(FieldExtension),
    #[serde(rename = "_fixedBoolean")]
    Boolean(FieldExtension),
    #[serde(rename = "_fixedCanonical")]
    Canonical(FieldExtension),
    #[serde(rename = "_fixedCode")]
    Code(FieldExtension),
    #[serde(rename = "_fixedDate")]
    Date(FieldExtension),
    #[serde(rename = "_fixedDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_fixedDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_fixedId")]
    Id(FieldExtension),
    #[serde(rename = "_fixedInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_fixedInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_fixedInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_fixedMarkdown")]
    Markdown(FieldExtension),
    #[serde(rename = "_fixedOid")]
    Oid(FieldExtension),
    #[serde(rename = "_fixedPositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_fixedString")]
    String(FieldExtension),
    #[serde(rename = "_fixedTime")]
    Time(FieldExtension),
    #[serde(rename = "_fixedUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_fixedUri")]
    Uri(FieldExtension),
    #[serde(rename = "_fixedUrl")]
    Url(FieldExtension),
    #[serde(rename = "_fixedUuid")]
    Uuid(FieldExtension),
    #[serde(rename = "_fixedAddress")]
    Address(FieldExtension),
    #[serde(rename = "_fixedAge")]
    Age(FieldExtension),
    #[serde(rename = "_fixedAnnotation")]
    Annotation(FieldExtension),
    #[serde(rename = "_fixedAttachment")]
    Attachment(FieldExtension),
    #[serde(rename = "_fixedCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_fixedCodeableReference")]
    CodeableReference(FieldExtension),
    #[serde(rename = "_fixedCoding")]
    Coding(FieldExtension),
    #[serde(rename = "_fixedContactPoint")]
    ContactPoint(FieldExtension),
    #[serde(rename = "_fixedCount")]
    Count(FieldExtension),
    #[serde(rename = "_fixedDistance")]
    Distance(FieldExtension),
    #[serde(rename = "_fixedDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_fixedHumanName")]
    HumanName(FieldExtension),
    #[serde(rename = "_fixedIdentifier")]
    Identifier(FieldExtension),
    #[serde(rename = "_fixedMoney")]
    Money(FieldExtension),
    #[serde(rename = "_fixedPeriod")]
    Period(FieldExtension),
    #[serde(rename = "_fixedQuantity")]
    Quantity(FieldExtension),
    #[serde(rename = "_fixedRange")]
    Range(FieldExtension),
    #[serde(rename = "_fixedRatio")]
    Ratio(FieldExtension),
    #[serde(rename = "_fixedRatioRange")]
    RatioRange(FieldExtension),
    #[serde(rename = "_fixedReference")]
    Reference(FieldExtension),
    #[serde(rename = "_fixedSampledData")]
    SampledData(FieldExtension),
    #[serde(rename = "_fixedSignature")]
    Signature(FieldExtension),
    #[serde(rename = "_fixedTiming")]
    Timing(FieldExtension),
    #[serde(rename = "_fixedContactDetail")]
    ContactDetail(FieldExtension),
    #[serde(rename = "_fixedDataRequirement")]
    DataRequirement(FieldExtension),
    #[serde(rename = "_fixedExpression")]
    Expression(FieldExtension),
    #[serde(rename = "_fixedParameterDefinition")]
    ParameterDefinition(FieldExtension),
    #[serde(rename = "_fixedRelatedArtifact")]
    RelatedArtifact(FieldExtension),
    #[serde(rename = "_fixedTriggerDefinition")]
    TriggerDefinition(FieldExtension),
    #[serde(rename = "_fixedUsageContext")]
    UsageContext(FieldExtension),
    #[serde(rename = "_fixedAvailability")]
    Availability(FieldExtension),
    #[serde(rename = "_fixedExtendedContactDetail")]
    ExtendedContactDetail(FieldExtension),
    #[serde(rename = "_fixedDosage")]
    Dosage(FieldExtension),
    #[serde(rename = "_fixedMeta")]
    Meta(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionPattern {
    #[serde(rename = "patternBase64Binary")]
    Base64Binary(Base64Binary),
    #[serde(rename = "patternBoolean")]
    Boolean(bool),
    #[serde(rename = "patternCanonical")]
    Canonical(String),
    #[serde(rename = "patternCode")]
    Code(String),
    #[serde(rename = "patternDate")]
    Date(Date),
    #[serde(rename = "patternDateTime")]
    DateTime(DateTime),
    #[serde(rename = "patternDecimal")]
    Decimal(f64),
    #[serde(rename = "patternId")]
    Id(String),
    #[serde(rename = "patternInstant")]
    Instant(Instant),
    #[serde(rename = "patternInteger")]
    Integer(i32),
    #[serde(rename = "patternInteger64")]
    Integer64(Integer64),
    #[serde(rename = "patternMarkdown")]
    Markdown(String),
    #[serde(rename = "patternOid")]
    Oid(String),
    #[serde(rename = "patternPositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "patternString")]
    String(String),
    #[serde(rename = "patternTime")]
    Time(Time),
    #[serde(rename = "patternUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "patternUri")]
    Uri(String),
    #[serde(rename = "patternUrl")]
    Url(String),
    #[serde(rename = "patternUuid")]
    Uuid(String),
    #[serde(rename = "patternAddress")]
    Address(Address),
    #[serde(rename = "patternAge")]
    Age(Age),
    #[serde(rename = "patternAnnotation")]
    Annotation(Annotation),
    #[serde(rename = "patternAttachment")]
    Attachment(Attachment),
    #[serde(rename = "patternCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "patternCodeableReference")]
    CodeableReference(CodeableReference),
    #[serde(rename = "patternCoding")]
    Coding(Coding),
    #[serde(rename = "patternContactPoint")]
    ContactPoint(ContactPoint),
    #[serde(rename = "patternCount")]
    Count(Count),
    #[serde(rename = "patternDistance")]
    Distance(Distance),
    #[serde(rename = "patternDuration")]
    Duration(Duration),
    #[serde(rename = "patternHumanName")]
    HumanName(HumanName),
    #[serde(rename = "patternIdentifier")]
    Identifier(Identifier),
    #[serde(rename = "patternMoney")]
    Money(Money),
    #[serde(rename = "patternPeriod")]
    Period(Period),
    #[serde(rename = "patternQuantity")]
    Quantity(Quantity),
    #[serde(rename = "patternRange")]
    Range(Range),
    #[serde(rename = "patternRatio")]
    Ratio(Ratio),
    #[serde(rename = "patternRatioRange")]
    RatioRange(RatioRange),
    #[serde(rename = "patternReference")]
    Reference(Reference),
    #[serde(rename = "patternSampledData")]
    SampledData(SampledData),
    #[serde(rename = "patternSignature")]
    Signature(Signature),
    #[serde(rename = "patternTiming")]
    Timing(Timing),
    #[serde(rename = "patternContactDetail")]
    ContactDetail(ContactDetail),
    #[serde(rename = "patternDataRequirement")]
    DataRequirement(DataRequirement),
    #[serde(rename = "patternExpression")]
    Expression(Expression),
    #[serde(rename = "patternParameterDefinition")]
    ParameterDefinition(ParameterDefinition),
    #[serde(rename = "patternRelatedArtifact")]
    RelatedArtifact(RelatedArtifact),
    #[serde(rename = "patternTriggerDefinition")]
    TriggerDefinition(TriggerDefinition),
    #[serde(rename = "patternUsageContext")]
    UsageContext(UsageContext),
    #[serde(rename = "patternAvailability")]
    Availability(Availability),
    #[serde(rename = "patternExtendedContactDetail")]
    ExtendedContactDetail(ExtendedContactDetail),
    #[serde(rename = "patternDosage")]
    Dosage(Dosage),
    #[serde(rename = "patternMeta")]
    Meta(Meta),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionPatternExtension {
    #[serde(rename = "_patternBase64Binary")]
    Base64Binary(FieldExtension),
    #[serde(rename = "_patternBoolean")]
    Boolean(FieldExtension),
    #[serde(rename = "_patternCanonical")]
    Canonical(FieldExtension),
    #[serde(rename = "_patternCode")]
    Code(FieldExtension),
    #[serde(rename = "_patternDate")]
    Date(FieldExtension),
    #[serde(rename = "_patternDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_patternDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_patternId")]
    Id(FieldExtension),
    #[serde(rename = "_patternInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_patternInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_patternInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_patternMarkdown")]
    Markdown(FieldExtension),
    #[serde(rename = "_patternOid")]
    Oid(FieldExtension),
    #[serde(rename = "_patternPositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_patternString")]
    String(FieldExtension),
    #[serde(rename = "_patternTime")]
    Time(FieldExtension),
    #[serde(rename = "_patternUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_patternUri")]
    Uri(FieldExtension),
    #[serde(rename = "_patternUrl")]
    Url(FieldExtension),
    #[serde(rename = "_patternUuid")]
    Uuid(FieldExtension),
    #[serde(rename = "_patternAddress")]
    Address(FieldExtension),
    #[serde(rename = "_patternAge")]
    Age(FieldExtension),
    #[serde(rename = "_patternAnnotation")]
    Annotation(FieldExtension),
    #[serde(rename = "_patternAttachment")]
    Attachment(FieldExtension),
    #[serde(rename = "_patternCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_patternCodeableReference")]
    CodeableReference(FieldExtension),
    #[serde(rename = "_patternCoding")]
    Coding(FieldExtension),
    #[serde(rename = "_patternContactPoint")]
    ContactPoint(FieldExtension),
    #[serde(rename = "_patternCount")]
    Count(FieldExtension),
    #[serde(rename = "_patternDistance")]
    Distance(FieldExtension),
    #[serde(rename = "_patternDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_patternHumanName")]
    HumanName(FieldExtension),
    #[serde(rename = "_patternIdentifier")]
    Identifier(FieldExtension),
    #[serde(rename = "_patternMoney")]
    Money(FieldExtension),
    #[serde(rename = "_patternPeriod")]
    Period(FieldExtension),
    #[serde(rename = "_patternQuantity")]
    Quantity(FieldExtension),
    #[serde(rename = "_patternRange")]
    Range(FieldExtension),
    #[serde(rename = "_patternRatio")]
    Ratio(FieldExtension),
    #[serde(rename = "_patternRatioRange")]
    RatioRange(FieldExtension),
    #[serde(rename = "_patternReference")]
    Reference(FieldExtension),
    #[serde(rename = "_patternSampledData")]
    SampledData(FieldExtension),
    #[serde(rename = "_patternSignature")]
    Signature(FieldExtension),
    #[serde(rename = "_patternTiming")]
    Timing(FieldExtension),
    #[serde(rename = "_patternContactDetail")]
    ContactDetail(FieldExtension),
    #[serde(rename = "_patternDataRequirement")]
    DataRequirement(FieldExtension),
    #[serde(rename = "_patternExpression")]
    Expression(FieldExtension),
    #[serde(rename = "_patternParameterDefinition")]
    ParameterDefinition(FieldExtension),
    #[serde(rename = "_patternRelatedArtifact")]
    RelatedArtifact(FieldExtension),
    #[serde(rename = "_patternTriggerDefinition")]
    TriggerDefinition(FieldExtension),
    #[serde(rename = "_patternUsageContext")]
    UsageContext(FieldExtension),
    #[serde(rename = "_patternAvailability")]
    Availability(FieldExtension),
    #[serde(rename = "_patternExtendedContactDetail")]
    ExtendedContactDetail(FieldExtension),
    #[serde(rename = "_patternDosage")]
    Dosage(FieldExtension),
    #[serde(rename = "_patternMeta")]
    Meta(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionExample {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "label")]
    pub label: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_label")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub label_ext: Option<FieldExtension>,
    #[serde(flatten)]
    pub value: ElementDefinitionExampleValue,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<ElementDefinitionExampleValueExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionExampleValue {
    #[serde(rename = "valueBase64Binary")]
    Base64Binary(Base64Binary),
    #[serde(rename = "valueBoolean")]
    Boolean(bool),
    #[serde(rename = "valueCanonical")]
    Canonical(String),
    #[serde(rename = "valueCode")]
    Code(String),
    #[serde(rename = "valueDate")]
    Date(Date),
    #[serde(rename = "valueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "valueDecimal")]
    Decimal(f64),
    #[serde(rename = "valueId")]
    Id(String),
    #[serde(rename = "valueInstant")]
    Instant(Instant),
    #[serde(rename = "valueInteger")]
    Integer(i32),
    #[serde(rename = "valueInteger64")]
    Integer64(Integer64),
    #[serde(rename = "valueMarkdown")]
    Markdown(String),
    #[serde(rename = "valueOid")]
    Oid(String),
    #[serde(rename = "valuePositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "valueString")]
    String(String),
    #[serde(rename = "valueTime")]
    Time(Time),
    #[serde(rename = "valueUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "valueUri")]
    Uri(String),
    #[serde(rename = "valueUrl")]
    Url(String),
    #[serde(rename = "valueUuid")]
    Uuid(String),
    #[serde(rename = "valueAddress")]
    Address(Address),
    #[serde(rename = "valueAge")]
    Age(Age),
    #[serde(rename = "valueAnnotation")]
    Annotation(Annotation),
    #[serde(rename = "valueAttachment")]
    Attachment(Attachment),
    #[serde(rename = "valueCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "valueCodeableReference")]
    CodeableReference(CodeableReference),
    #[serde(rename = "valueCoding")]
    Coding(Coding),
    #[serde(rename = "valueContactPoint")]
    ContactPoint(ContactPoint),
    #[serde(rename = "valueCount")]
    Count(Count),
    #[serde(rename = "valueDistance")]
    Distance(Distance),
    #[serde(rename = "valueDuration")]
    Duration(Duration),
    #[serde(rename = "valueHumanName")]
    HumanName(HumanName),
    #[serde(rename = "valueIdentifier")]
    Identifier(Identifier),
    #[serde(rename = "valueMoney")]
    Money(Money),
    #[serde(rename = "valuePeriod")]
    Period(Period),
    #[serde(rename = "valueQuantity")]
    Quantity(Quantity),
    #[serde(rename = "valueRange")]
    Range(Range),
    #[serde(rename = "valueRatio")]
    Ratio(Ratio),
    #[serde(rename = "valueRatioRange")]
    RatioRange(RatioRange),
    #[serde(rename = "valueReference")]
    Reference(Reference),
    #[serde(rename = "valueSampledData")]
    SampledData(SampledData),
    #[serde(rename = "valueSignature")]
    Signature(Signature),
    #[serde(rename = "valueTiming")]
    Timing(Timing),
    #[serde(rename = "valueContactDetail")]
    ContactDetail(ContactDetail),
    #[serde(rename = "valueDataRequirement")]
    DataRequirement(DataRequirement),
    #[serde(rename = "valueExpression")]
    Expression(Expression),
    #[serde(rename = "valueParameterDefinition")]
    ParameterDefinition(ParameterDefinition),
    #[serde(rename = "valueRelatedArtifact")]
    RelatedArtifact(RelatedArtifact),
    #[serde(rename = "valueTriggerDefinition")]
    TriggerDefinition(TriggerDefinition),
    #[serde(rename = "valueUsageContext")]
    UsageContext(UsageContext),
    #[serde(rename = "valueAvailability")]
    Availability(Availability),
    #[serde(rename = "valueExtendedContactDetail")]
    ExtendedContactDetail(ExtendedContactDetail),
    #[serde(rename = "valueDosage")]
    Dosage(Dosage),
    #[serde(rename = "valueMeta")]
    Meta(Meta),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionExampleValueExtension {
    #[serde(rename = "_valueBase64Binary")]
    Base64Binary(FieldExtension),
    #[serde(rename = "_valueBoolean")]
    Boolean(FieldExtension),
    #[serde(rename = "_valueCanonical")]
    Canonical(FieldExtension),
    #[serde(rename = "_valueCode")]
    Code(FieldExtension),
    #[serde(rename = "_valueDate")]
    Date(FieldExtension),
    #[serde(rename = "_valueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_valueDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_valueId")]
    Id(FieldExtension),
    #[serde(rename = "_valueInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_valueInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_valueInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_valueMarkdown")]
    Markdown(FieldExtension),
    #[serde(rename = "_valueOid")]
    Oid(FieldExtension),
    #[serde(rename = "_valuePositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_valueString")]
    String(FieldExtension),
    #[serde(rename = "_valueTime")]
    Time(FieldExtension),
    #[serde(rename = "_valueUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_valueUri")]
    Uri(FieldExtension),
    #[serde(rename = "_valueUrl")]
    Url(FieldExtension),
    #[serde(rename = "_valueUuid")]
    Uuid(FieldExtension),
    #[serde(rename = "_valueAddress")]
    Address(FieldExtension),
    #[serde(rename = "_valueAge")]
    Age(FieldExtension),
    #[serde(rename = "_valueAnnotation")]
    Annotation(FieldExtension),
    #[serde(rename = "_valueAttachment")]
    Attachment(FieldExtension),
    #[serde(rename = "_valueCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_valueCodeableReference")]
    CodeableReference(FieldExtension),
    #[serde(rename = "_valueCoding")]
    Coding(FieldExtension),
    #[serde(rename = "_valueContactPoint")]
    ContactPoint(FieldExtension),
    #[serde(rename = "_valueCount")]
    Count(FieldExtension),
    #[serde(rename = "_valueDistance")]
    Distance(FieldExtension),
    #[serde(rename = "_valueDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_valueHumanName")]
    HumanName(FieldExtension),
    #[serde(rename = "_valueIdentifier")]
    Identifier(FieldExtension),
    #[serde(rename = "_valueMoney")]
    Money(FieldExtension),
    #[serde(rename = "_valuePeriod")]
    Period(FieldExtension),
    #[serde(rename = "_valueQuantity")]
    Quantity(FieldExtension),
    #[serde(rename = "_valueRange")]
    Range(FieldExtension),
    #[serde(rename = "_valueRatio")]
    Ratio(FieldExtension),
    #[serde(rename = "_valueRatioRange")]
    RatioRange(FieldExtension),
    #[serde(rename = "_valueReference")]
    Reference(FieldExtension),
    #[serde(rename = "_valueSampledData")]
    SampledData(FieldExtension),
    #[serde(rename = "_valueSignature")]
    Signature(FieldExtension),
    #[serde(rename = "_valueTiming")]
    Timing(FieldExtension),
    #[serde(rename = "_valueContactDetail")]
    ContactDetail(FieldExtension),
    #[serde(rename = "_valueDataRequirement")]
    DataRequirement(FieldExtension),
    #[serde(rename = "_valueExpression")]
    Expression(FieldExtension),
    #[serde(rename = "_valueParameterDefinition")]
    ParameterDefinition(FieldExtension),
    #[serde(rename = "_valueRelatedArtifact")]
    RelatedArtifact(FieldExtension),
    #[serde(rename = "_valueTriggerDefinition")]
    TriggerDefinition(FieldExtension),
    #[serde(rename = "_valueUsageContext")]
    UsageContext(FieldExtension),
    #[serde(rename = "_valueAvailability")]
    Availability(FieldExtension),
    #[serde(rename = "_valueExtendedContactDetail")]
    ExtendedContactDetail(FieldExtension),
    #[serde(rename = "_valueDosage")]
    Dosage(FieldExtension),
    #[serde(rename = "_valueMeta")]
    Meta(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionMinValue {
    #[serde(rename = "minValueDate")]
    Date(Date),
    #[serde(rename = "minValueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "minValueInstant")]
    Instant(Instant),
    #[serde(rename = "minValueTime")]
    Time(Time),
    #[serde(rename = "minValueDecimal")]
    Decimal(f64),
    #[serde(rename = "minValueInteger")]
    Integer(i32),
    #[serde(rename = "minValueInteger64")]
    Integer64(Integer64),
    #[serde(rename = "minValuePositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "minValueUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "minValueQuantity")]
    Quantity(Quantity),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionMinValueExtension {
    #[serde(rename = "_minValueDate")]
    Date(FieldExtension),
    #[serde(rename = "_minValueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_minValueInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_minValueTime")]
    Time(FieldExtension),
    #[serde(rename = "_minValueDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_minValueInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_minValueInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_minValuePositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_minValueUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_minValueQuantity")]
    Quantity(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionMaxValue {
    #[serde(rename = "maxValueDate")]
    Date(Date),
    #[serde(rename = "maxValueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "maxValueInstant")]
    Instant(Instant),
    #[serde(rename = "maxValueTime")]
    Time(Time),
    #[serde(rename = "maxValueDecimal")]
    Decimal(f64),
    #[serde(rename = "maxValueInteger")]
    Integer(i32),
    #[serde(rename = "maxValueInteger64")]
    Integer64(Integer64),
    #[serde(rename = "maxValuePositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "maxValueUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "maxValueQuantity")]
    Quantity(Quantity),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ElementDefinitionMaxValueExtension {
    #[serde(rename = "_maxValueDate")]
    Date(FieldExtension),
    #[serde(rename = "_maxValueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_maxValueInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_maxValueTime")]
    Time(FieldExtension),
    #[serde(rename = "_maxValueDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_maxValueInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_maxValueInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_maxValuePositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_maxValueUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_maxValueQuantity")]
    Quantity(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionConstraint {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "key")]
    pub key: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_key")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub key_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Why this constraint is necessary or appropriate** \n\n Description of why this constraint is necessary or appropriate. \n\n To be used if the reason for the constraint might not be intuitive to all implementers. "
            )
        )
    )]
    #[serde(rename = "requirements")]
    pub requirements: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_requirements")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub requirements_ext: Option<FieldExtension>,
    #[serde(rename = "severity")]
    pub severity: codes::ConstraintSeverity,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_severity")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub severity_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Suppress warning or hint in profile** \n\n If true, indicates that the warning or best practice guideline should be suppressed. \n\n This element should only be present in a derived profile where a warning or hint has been determined to be spurious/incorrect. E.g. a warning encouraging the inclusion of an element that the profile explicitly prohibits. "
            )
        )
    )]
    #[serde(rename = "suppress")]
    pub suppress: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_suppress")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub suppress_ext: Option<FieldExtension>,
    #[serde(rename = "human")]
    pub human: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_human")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub human_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **FHIRPath expression of constraint** \n\n A [FHIRPath](fhirpath.html) expression of constraint that can be executed to see if this constraint is met. \n\n In the absense of an expression, the expression is likely not enforceable by validators, and might be missed by many systems. "
            )
        )
    )]
    #[serde(rename = "expression")]
    pub expression: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_expression")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub expression_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Reference to original source of constraint** \n\n A reference to the original source of the constraint, for traceability purposes. \n\n This is used when, e.g. rendering, where it is not useful to present inherited constraints when rendering the snapshot. "
            )
        )
    )]
    #[serde(rename = "source")]
    pub source: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_source")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub source_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionBinding {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "strength")]
    pub strength: codes::BindingStrength,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_strength")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub strength_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Intended use of codes in the bound value set** \n\n Describes the intended use of this particular set of codes. \n\n "
            )
        )
    )]
    #[serde(rename = "description")]
    pub description: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_description")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub description_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Source of value set** \n\n Refers to the value set that identifies the set of codes the binding refers to. \n\n The reference may be version-specific or not (e.g. have a |[version] at the end of the canonical URL). "
            )
        )
    )]
    #[serde(rename = "valueSet")]
    pub value_set: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_valueSet")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_set_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional Bindings - more rules about the binding** \n\n Additional bindings that help applications implementing this element. Additional bindings do not replace the main binding but provide more information and/or context. \n\n "
            )
        )
    )]
    #[serde(rename = "additional")]
    pub additional: Vec<Option<ElementDefinitionBindingAdditional>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_additional")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub additional_ext: Vec<Option<FieldExtension>>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionBindingAdditional {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "purpose")]
    pub purpose: codes::AdditionalBindingPurposeCodes,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_purpose")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub purpose_ext: Option<FieldExtension>,
    #[serde(rename = "valueSet")]
    pub value_set: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_valueSet")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_set_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Documentation of the purpose of use of the binding** \n\n Documentation of the purpose of use of the bindingproviding additional information about how it is intended to be used. \n\n "
            )
        )
    )]
    #[serde(rename = "documentation")]
    pub documentation: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_documentation")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub documentation_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Concise documentation - for summary tables** \n\n Concise documentation - for summary tables. \n\n "
            )
        )
    )]
    #[serde(rename = "shortDoco")]
    pub short_doco: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_shortDoco")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub short_doco_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Qualifies the usage - jurisdiction, gender, workflow status etc.** \n\n Qualifies the usage of the binding. Typically bindings are qualified by jurisdiction, but they may also be qualified by gender, workflow status, clinical domain etc. The information to decide whether a usege context applies is usually outside the resource, determined by context, and this might present challenges for validation tooling. \n\n This specification does not define exactly how the context is determined for the usage; typically, this will be described in implementation guides. "
            )
        )
    )]
    #[serde(rename = "usage")]
    pub usage: Vec<Option<UsageContext>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_usage")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub usage_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Whether binding can applies to all repeats, or just one** \n\n Whether the binding applies to all repeats, or just to any one of them. This is only relevant for elements that can repeat. \n\n A common pattern is to make a conformance binding to all repeats, and then make a binding that one of the repeats must conform to. "
            )
        )
    )]
    #[serde(rename = "any")]
    pub any: Option<bool>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_any")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub any_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct ElementDefinitionMapping {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "identity")]
    pub identity: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_identity")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub identity_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MimeType](http://hl7.org/fhir/ValueSet/mimetypes); Computable language of mapping** \n\n Identifies the computable language in which mapping.map is expressed. \n\n If omitted, then there can be no expectation of computational interpretation of the mapping. "
            )
        )
    )]
    #[serde(rename = "language")]
    pub language: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_language")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub language_ext: Option<FieldExtension>,
    #[serde(rename = "map")]
    pub map: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_map")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub map_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Comments about the mapping or its use** \n\n Comments that provide information about the mapping or its use. \n\n "
            )
        )
    )]
    #[serde(rename = "comment")]
    pub comment: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_comment")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub comment_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Expression(pub Box<ExpressionInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ExpressionBuilder),
        build_method(into = Expression),
        field_defaults(setter(into)),
    )
)]
pub struct ExpressionInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Natural language description of the condition** \n\n A brief, natural language description of the condition that effectively communicates the intended semantics. \n\n "
            )
        )
    )]
    #[serde(rename = "description")]
    pub description: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_description")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub description_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Short name assigned to expression for reuse** \n\n A short name assigned to the expression to allow for multiple reuse of the expression in the context where it is defined. \n\n "
            )
        )
    )]
    #[serde(rename = "name")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_name")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub name_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[ExpressionLanguage](http://hl7.org/fhir/ValueSet/expression-language); text/cql | text/fhirpath | application/x-fhir-query | etc.** \n\n The media type of the language for the expression. \n\n "
            )
        )
    )]
    #[serde(rename = "language")]
    pub language: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_language")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub language_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Expression in specified language** \n\n An expression in the specified language that returns a value. \n\n If Expression.expression and Expression.reference are both present, the Expression.expression might just be a name pointing something within the referenced content. "
            )
        )
    )]
    #[serde(rename = "expression")]
    pub expression: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_expression")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub expression_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Where the expression is found** \n\n A URI that defines where the expression is found. \n\n If both a reference and an expression is found, the reference SHALL point to the same expression. "
            )
        )
    )]
    #[serde(rename = "reference")]
    pub reference: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_reference")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub reference_ext: Option<FieldExtension>,
}
impl From<ExpressionInner> for Expression {
    fn from(inner: ExpressionInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Expression {
    type Target = ExpressionInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Expression {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Expression {
    #[cfg(feature = "builders")]
    pub fn builder() -> ExpressionBuilder {
        ExpressionInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ExtendedContactDetail(pub Box<ExtendedContactDetailInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ExtendedContactDetailBuilder),
        build_method(into = ExtendedContactDetail),
        field_defaults(setter(into)),
    )
)]
pub struct ExtendedContactDetailInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[Purpose](http://terminology.hl7.org/ValueSet/contactentity-type); The type of contact** \n\n The purpose/type of contact. \n\n If no purpose is defined, then these contact details may be used for any purpose. "
            )
        )
    )]
    #[serde(rename = "purpose")]
    pub purpose: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_purpose")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub purpose_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name of an individual to contact** \n\n The name of an individual to contact, some types of contact detail are usually blank. \n\n If there is no named individual, the telecom/address information is not generally monitored by a specific individual. "
            )
        )
    )]
    #[serde(rename = "name")]
    pub name: Vec<Option<HumanName>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_name")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub name_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Contact details (e.g.phone/fax/url)** \n\n The contact details application for the purpose defined. \n\n "
            )
        )
    )]
    #[serde(rename = "telecom")]
    pub telecom: Vec<Option<ContactPoint>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_telecom")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub telecom_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Address for the contact** \n\n Address for the contact. \n\n More than 1 address would be for different purposes, and thus should be entered as a different entry,. "
            )
        )
    )]
    #[serde(rename = "address")]
    pub address: Option<Address>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_address")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub address_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **This contact detail is handled/monitored by a specific organization** \n\n This contact detail is handled/monitored by a specific organization. If the name is provided in the contact, then it is referring to the named individual within this organization. \n\n "
            )
        )
    )]
    #[serde(rename = "organization")]
    pub organization: Option<Reference>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_organization")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub organization_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Period that this contact was valid for usage** \n\n Period that this contact was valid for usage. \n\n If the details have multiple periods, then enter in a new ExtendedContact with the new period. "
            )
        )
    )]
    #[serde(rename = "period")]
    pub period: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_period")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<FieldExtension>,
}
impl From<ExtendedContactDetailInner> for ExtendedContactDetail {
    fn from(inner: ExtendedContactDetailInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for ExtendedContactDetail {
    type Target = ExtendedContactDetailInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for ExtendedContactDetail {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl ExtendedContactDetail {
    #[cfg(feature = "builders")]
    pub fn builder() -> ExtendedContactDetailBuilder {
        ExtendedContactDetailInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Extension(pub Box<ExtensionInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ExtensionBuilder),
        build_method(into = Extension),
        field_defaults(setter(into)),
    )
)]
pub struct ExtensionInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "url")]
    pub url: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Value of extension** \n\n Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list). \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub value: Option<ExtensionValue>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<ExtensionValueExtension>,
}
impl From<ExtensionInner> for Extension {
    fn from(inner: ExtensionInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Extension {
    type Target = ExtensionInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Extension {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Extension {
    #[cfg(feature = "builders")]
    pub fn builder() -> ExtensionBuilder {
        ExtensionInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ExtensionValue {
    #[serde(rename = "valueBase64Binary")]
    Base64Binary(Base64Binary),
    #[serde(rename = "valueBoolean")]
    Boolean(bool),
    #[serde(rename = "valueCanonical")]
    Canonical(String),
    #[serde(rename = "valueCode")]
    Code(String),
    #[serde(rename = "valueDate")]
    Date(Date),
    #[serde(rename = "valueDateTime")]
    DateTime(DateTime),
    #[serde(rename = "valueDecimal")]
    Decimal(f64),
    #[serde(rename = "valueId")]
    Id(String),
    #[serde(rename = "valueInstant")]
    Instant(Instant),
    #[serde(rename = "valueInteger")]
    Integer(i32),
    #[serde(rename = "valueInteger64")]
    Integer64(Integer64),
    #[serde(rename = "valueMarkdown")]
    Markdown(String),
    #[serde(rename = "valueOid")]
    Oid(String),
    #[serde(rename = "valuePositiveInt")]
    PositiveInt(NonZeroU32),
    #[serde(rename = "valueString")]
    String(String),
    #[serde(rename = "valueTime")]
    Time(Time),
    #[serde(rename = "valueUnsignedInt")]
    UnsignedInt(u32),
    #[serde(rename = "valueUri")]
    Uri(String),
    #[serde(rename = "valueUrl")]
    Url(String),
    #[serde(rename = "valueUuid")]
    Uuid(String),
    #[serde(rename = "valueAddress")]
    Address(Address),
    #[serde(rename = "valueAge")]
    Age(Age),
    #[serde(rename = "valueAnnotation")]
    Annotation(Annotation),
    #[serde(rename = "valueAttachment")]
    Attachment(Attachment),
    #[serde(rename = "valueCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "valueCodeableReference")]
    CodeableReference(CodeableReference),
    #[serde(rename = "valueCoding")]
    Coding(Coding),
    #[serde(rename = "valueContactPoint")]
    ContactPoint(ContactPoint),
    #[serde(rename = "valueCount")]
    Count(Count),
    #[serde(rename = "valueDistance")]
    Distance(Distance),
    #[serde(rename = "valueDuration")]
    Duration(Duration),
    #[serde(rename = "valueHumanName")]
    HumanName(HumanName),
    #[serde(rename = "valueIdentifier")]
    Identifier(Identifier),
    #[serde(rename = "valueMoney")]
    Money(Money),
    #[serde(rename = "valuePeriod")]
    Period(Period),
    #[serde(rename = "valueQuantity")]
    Quantity(Quantity),
    #[serde(rename = "valueRange")]
    Range(Range),
    #[serde(rename = "valueRatio")]
    Ratio(Ratio),
    #[serde(rename = "valueRatioRange")]
    RatioRange(RatioRange),
    #[serde(rename = "valueReference")]
    Reference(Reference),
    #[serde(rename = "valueSampledData")]
    SampledData(SampledData),
    #[serde(rename = "valueSignature")]
    Signature(Signature),
    #[serde(rename = "valueTiming")]
    Timing(Timing),
    #[serde(rename = "valueContactDetail")]
    ContactDetail(ContactDetail),
    #[serde(rename = "valueDataRequirement")]
    DataRequirement(DataRequirement),
    #[serde(rename = "valueExpression")]
    Expression(Expression),
    #[serde(rename = "valueParameterDefinition")]
    ParameterDefinition(ParameterDefinition),
    #[serde(rename = "valueRelatedArtifact")]
    RelatedArtifact(RelatedArtifact),
    #[serde(rename = "valueTriggerDefinition")]
    TriggerDefinition(TriggerDefinition),
    #[serde(rename = "valueUsageContext")]
    UsageContext(UsageContext),
    #[serde(rename = "valueAvailability")]
    Availability(Availability),
    #[serde(rename = "valueExtendedContactDetail")]
    ExtendedContactDetail(ExtendedContactDetail),
    #[serde(rename = "valueDosage")]
    Dosage(Dosage),
    #[serde(rename = "valueMeta")]
    Meta(Meta),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ExtensionValueExtension {
    #[serde(rename = "_valueBase64Binary")]
    Base64Binary(FieldExtension),
    #[serde(rename = "_valueBoolean")]
    Boolean(FieldExtension),
    #[serde(rename = "_valueCanonical")]
    Canonical(FieldExtension),
    #[serde(rename = "_valueCode")]
    Code(FieldExtension),
    #[serde(rename = "_valueDate")]
    Date(FieldExtension),
    #[serde(rename = "_valueDateTime")]
    DateTime(FieldExtension),
    #[serde(rename = "_valueDecimal")]
    Decimal(FieldExtension),
    #[serde(rename = "_valueId")]
    Id(FieldExtension),
    #[serde(rename = "_valueInstant")]
    Instant(FieldExtension),
    #[serde(rename = "_valueInteger")]
    Integer(FieldExtension),
    #[serde(rename = "_valueInteger64")]
    Integer64(FieldExtension),
    #[serde(rename = "_valueMarkdown")]
    Markdown(FieldExtension),
    #[serde(rename = "_valueOid")]
    Oid(FieldExtension),
    #[serde(rename = "_valuePositiveInt")]
    PositiveInt(FieldExtension),
    #[serde(rename = "_valueString")]
    String(FieldExtension),
    #[serde(rename = "_valueTime")]
    Time(FieldExtension),
    #[serde(rename = "_valueUnsignedInt")]
    UnsignedInt(FieldExtension),
    #[serde(rename = "_valueUri")]
    Uri(FieldExtension),
    #[serde(rename = "_valueUrl")]
    Url(FieldExtension),
    #[serde(rename = "_valueUuid")]
    Uuid(FieldExtension),
    #[serde(rename = "_valueAddress")]
    Address(FieldExtension),
    #[serde(rename = "_valueAge")]
    Age(FieldExtension),
    #[serde(rename = "_valueAnnotation")]
    Annotation(FieldExtension),
    #[serde(rename = "_valueAttachment")]
    Attachment(FieldExtension),
    #[serde(rename = "_valueCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_valueCodeableReference")]
    CodeableReference(FieldExtension),
    #[serde(rename = "_valueCoding")]
    Coding(FieldExtension),
    #[serde(rename = "_valueContactPoint")]
    ContactPoint(FieldExtension),
    #[serde(rename = "_valueCount")]
    Count(FieldExtension),
    #[serde(rename = "_valueDistance")]
    Distance(FieldExtension),
    #[serde(rename = "_valueDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_valueHumanName")]
    HumanName(FieldExtension),
    #[serde(rename = "_valueIdentifier")]
    Identifier(FieldExtension),
    #[serde(rename = "_valueMoney")]
    Money(FieldExtension),
    #[serde(rename = "_valuePeriod")]
    Period(FieldExtension),
    #[serde(rename = "_valueQuantity")]
    Quantity(FieldExtension),
    #[serde(rename = "_valueRange")]
    Range(FieldExtension),
    #[serde(rename = "_valueRatio")]
    Ratio(FieldExtension),
    #[serde(rename = "_valueRatioRange")]
    RatioRange(FieldExtension),
    #[serde(rename = "_valueReference")]
    Reference(FieldExtension),
    #[serde(rename = "_valueSampledData")]
    SampledData(FieldExtension),
    #[serde(rename = "_valueSignature")]
    Signature(FieldExtension),
    #[serde(rename = "_valueTiming")]
    Timing(FieldExtension),
    #[serde(rename = "_valueContactDetail")]
    ContactDetail(FieldExtension),
    #[serde(rename = "_valueDataRequirement")]
    DataRequirement(FieldExtension),
    #[serde(rename = "_valueExpression")]
    Expression(FieldExtension),
    #[serde(rename = "_valueParameterDefinition")]
    ParameterDefinition(FieldExtension),
    #[serde(rename = "_valueRelatedArtifact")]
    RelatedArtifact(FieldExtension),
    #[serde(rename = "_valueTriggerDefinition")]
    TriggerDefinition(FieldExtension),
    #[serde(rename = "_valueUsageContext")]
    UsageContext(FieldExtension),
    #[serde(rename = "_valueAvailability")]
    Availability(FieldExtension),
    #[serde(rename = "_valueExtendedContactDetail")]
    ExtendedContactDetail(FieldExtension),
    #[serde(rename = "_valueDosage")]
    Dosage(FieldExtension),
    #[serde(rename = "_valueMeta")]
    Meta(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct HumanName(pub Box<HumanNameInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = HumanNameBuilder),
        build_method(into = HumanName),
        field_defaults(setter(into)),
    )
)]
pub struct HumanNameInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[NameUse](http://hl7.org/fhir/ValueSet/name-use); usual | official | temp | nickname | anonymous | old | maiden** \n\n Identifies the purpose for this name. \n\n Applications can assume that a name is current unless it explicitly says that it is temporary or old. "
            )
        )
    )]
    #[serde(rename = "use")]
    pub r#use: Option<codes::NameUse>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_use")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#use_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Text representation of the full name** \n\n Specifies the entire name as it should be displayed e.g. on an application UI. This may be provided instead of or as well as the specific parts. \n\n Can provide both a text representation and parts. Applications updating a name SHALL ensure that when both text and parts are present,  no content is included in the text that isn't found in a part. "
            )
        )
    )]
    #[serde(rename = "text")]
    pub text: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_text")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub text_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Family name (often called 'Surname')** \n\n The part of a name that links to the genealogy. In some cultures (e.g. Eritrea) the family name of a son is the first name of his father. \n\n Family Name may be decomposed into specific parts using extensions (de, nl, es related cultures). "
            )
        )
    )]
    #[serde(rename = "family")]
    pub family: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_family")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub family_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Given names (not always 'first'). Includes middle names** \n\n Given name. \n\n If only initials are recorded, they may be used in place of the full name parts. Initials may be separated into multiple given names but often aren't due to paractical limitations.  This element is not called \"first name\" since given names do not always come first. "
            )
        )
    )]
    #[serde(rename = "given")]
    pub given: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_given")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub given_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Parts that come before the name** \n\n Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the start of the name. \n\n "
            )
        )
    )]
    #[serde(rename = "prefix")]
    pub prefix: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_prefix")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub prefix_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Parts that come after the name** \n\n Part of the name that is acquired as a title due to academic, legal, employment or nobility status, etc. and that appears at the end of the name. \n\n "
            )
        )
    )]
    #[serde(rename = "suffix")]
    pub suffix: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_suffix")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub suffix_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Time period when name was/is in use** \n\n Indicates the period of time when this name was valid for the named person. \n\n "
            )
        )
    )]
    #[serde(rename = "period")]
    pub period: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_period")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<FieldExtension>,
}
impl From<HumanNameInner> for HumanName {
    fn from(inner: HumanNameInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for HumanName {
    type Target = HumanNameInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for HumanName {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl HumanName {
    #[cfg(feature = "builders")]
    pub fn builder() -> HumanNameBuilder {
        HumanNameInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Identifier(pub Box<IdentifierInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = IdentifierBuilder),
        build_method(into = Identifier),
        field_defaults(setter(into)),
    )
)]
pub struct IdentifierInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[IdentifierUse](http://hl7.org/fhir/ValueSet/identifier-use); usual | official | temp | secondary | old (If known)** \n\n The purpose of this identifier. \n\n Applications can assume that an identifier is permanent unless it explicitly says that it is temporary. "
            )
        )
    )]
    #[serde(rename = "use")]
    pub r#use: Option<codes::IdentifierUse>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_use")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#use_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[IdentifierType](http://hl7.org/fhir/ValueSet/identifier-type); Description of identifier** \n\n A coded type for the identifier that can be used to determine which identifier to use for a specific purpose. \n\n This element deals only with general categories of identifiers.  It SHOULD not be used for codes that correspond 1..1 with the Identifier.system. Some identifiers may fall into multiple categories due to common usage.   Where the system is known, a type is unnecessary because the type is always part of the system definition. However systems often need to handle identifiers where the system is not known. There is not a 1:1 relationship between type and system, since many different systems have the same type. "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The namespace for the identifier value** \n\n Establishes the namespace for the value - that is, an absolute URL that describes a set values that are unique. \n\n Identifier.system is always case sensitive. "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_system")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub system_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The value that is unique** \n\n The portion of the identifier typically relevant to the user and which is unique within the context of the system. \n\n If the value is a full URI, then the system SHALL be urn:ietf:rfc:3986.  The value's primary purpose is computational mapping.  As a result, it may be normalized for comparison purposes (e.g. removing non-significant whitespace, dashes, etc.)  A value formatted for human display can be conveyed using the [http://hl7.org/fhir/StructureDefinition/rendered-value](http://hl7.org/fhir/extensions/StructureDefinition-rendered-value.html)). Identifier.value is to be treated as case sensitive unless knowledge of the Identifier.system allows the processer to be confident that non-case-sensitive processing is safe. "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_value")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Time period when id is/was valid for use** \n\n Time period during which identifier is/was valid for use. \n\n "
            )
        )
    )]
    #[serde(rename = "period")]
    pub period: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_period")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Organization that issued id (may be just text)** \n\n Organization that issued/manages the identifier. \n\n The Identifier.assigner may omit the .reference element and only contain a .display element reflecting the name or other textual information about the assigning organization. "
            )
        )
    )]
    #[serde(rename = "assigner")]
    pub assigner: Option<Reference>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_assigner")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub assigner_ext: Option<FieldExtension>,
}
impl From<IdentifierInner> for Identifier {
    fn from(inner: IdentifierInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Identifier {
    type Target = IdentifierInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Identifier {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Identifier {
    #[cfg(feature = "builders")]
    pub fn builder() -> IdentifierBuilder {
        IdentifierInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct MarketingStatus(pub Box<MarketingStatusInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = MarketingStatusBuilder),
        build_method(into = MarketingStatus),
        field_defaults(setter(into)),
    )
)]
pub struct MarketingStatusInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Extensions that cannot be ignored even if unrecognized** \n\n May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself). \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "modifierExtension")]
    pub modifier_extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The country in which the marketing authorization has been granted shall be specified It should be specified using the ISO 3166 ‑ 1 alpha-2 code elements** \n\n The country in which the marketing authorization has been granted shall be specified It should be specified using the ISO 3166 ‑ 1 alpha-2 code elements. \n\n "
            )
        )
    )]
    #[serde(rename = "country")]
    pub country: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_country")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub country_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Where a Medicines Regulatory Agency has granted a marketing authorization for which specific provisions within a jurisdiction apply, the jurisdiction can be specified using an appropriate controlled terminology The controlled term and the controlled term identifier shall be specified** \n\n Where a Medicines Regulatory Agency has granted a marketing authorization for which specific provisions within a jurisdiction apply, the jurisdiction can be specified using an appropriate controlled terminology The controlled term and the controlled term identifier shall be specified. \n\n "
            )
        )
    )]
    #[serde(rename = "jurisdiction")]
    pub jurisdiction: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_jurisdiction")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub jurisdiction_ext: Option<FieldExtension>,
    #[serde(rename = "status")]
    pub status: CodeableConcept,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_status")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub status_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The date when the Medicinal Product is placed on the market by the Marketing Authorization Holder (or where applicable, the manufacturer/distributor) in a country and/or jurisdiction shall be provided A complete date consisting of day, month and year shall be specified using the ISO 8601 date format NOTE “Placed on the market” refers to the release of the Medicinal Product into the distribution chain** \n\n The date when the Medicinal Product is placed on the market by the Marketing Authorization Holder (or where applicable, the manufacturer/distributor) in a country and/or jurisdiction shall be provided A complete date consisting of day, month and year shall be specified using the ISO 8601 date format NOTE “Placed on the market” refers to the release of the Medicinal Product into the distribution chain. \n\n "
            )
        )
    )]
    #[serde(rename = "dateRange")]
    pub date_range: Option<Period>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_dateRange")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub date_range_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The date when the Medicinal Product is placed on the market by the Marketing Authorization Holder (or where applicable, the manufacturer/distributor) in a country and/or jurisdiction shall be provided A complete date consisting of day, month and year shall be specified using the ISO 8601 date format NOTE “Placed on the market” refers to the release of the Medicinal Product into the distribution chain** \n\n The date when the Medicinal Product is placed on the market by the Marketing Authorization Holder (or where applicable, the manufacturer/distributor) in a country and/or jurisdiction shall be provided A complete date consisting of day, month and year shall be specified using the ISO 8601 date format NOTE “Placed on the market” refers to the release of the Medicinal Product into the distribution chain. \n\n "
            )
        )
    )]
    #[serde(rename = "restoreDate")]
    pub restore_date: Option<DateTime>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_restoreDate")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub restore_date_ext: Option<FieldExtension>,
}
impl From<MarketingStatusInner> for MarketingStatus {
    fn from(inner: MarketingStatusInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for MarketingStatus {
    type Target = MarketingStatusInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for MarketingStatus {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl MarketingStatus {
    #[cfg(feature = "builders")]
    pub fn builder() -> MarketingStatusBuilder {
        MarketingStatusInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Meta(pub Box<MetaInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = MetaBuilder),
        build_method(into = Meta),
        field_defaults(setter(into)),
    )
)]
pub struct MetaInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Version specific identifier** \n\n The version specific identifier, as it appears in the version portion of the URL. This value changes when the resource is created, updated, or deleted. \n\n The server assigns this value, and ignores what the client specifies, except in the case that the server is imposing version integrity on updates/deletes. "
            )
        )
    )]
    #[serde(rename = "versionId")]
    pub version_id: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_versionId")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub version_id_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **When the resource version last changed** \n\n When the resource last changed - e.g. when the version changed. \n\n This element is generally omitted in instances submitted in a PUT or POST. Instead, it is populated in the response instance and when retrieving information using a GET. The server / resource manager sets this value; what a client provides is irrelevant. This is equivalent to the HTTP Last-Modified and SHOULD have the same value on a [read](http.html#read) interaction. "
            )
        )
    )]
    #[serde(rename = "lastUpdated")]
    pub last_updated: Option<Instant>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_lastUpdated")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub last_updated_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Identifies where the resource comes from** \n\n A uri that identifies the source system of the resource. This provides a minimal amount of [Provenance](provenance.html#) information that can be used to track or differentiate the source of information in the resource. The source may identify another FHIR server, document, message, database, etc. \n\n The exact use of the source (and the possible implied Provenance.entity.role and agent.role) is left to implementer discretion. Only one nominated source is allowed; for additional provenance details, a full Provenance resource should be used. The source may correspond to Provenance.entity.what[x] or Provenance.agent.who[x], though it may be a more general or abstract reference. \n\nThis element can be used to indicate where the current master source of a resource that has a canonical URL if the resource is no longer hosted at the canonical URL. "
            )
        )
    )]
    #[serde(rename = "source")]
    pub source: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_source")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub source_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Profiles this resource claims to conform to** \n\n A list of profiles (references to [StructureDefinition](structuredefinition.html#) resources) that this resource claims to conform to. The URL is a reference to [StructureDefinition.url](structuredefinition-definitions.html#StructureDefinition.url). \n\n It is up to the server and/or other infrastructure of policy to determine whether/how these claims are verified and/or updated over time.  The list of profile URLs is a set. "
            )
        )
    )]
    #[serde(rename = "profile")]
    pub profile: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_profile")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub profile_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[SecurityLabels](http://hl7.org/fhir/ValueSet/security-labels); Security Labels applied to this resource** \n\n Security labels applied to this resource. These tags connect specific resources to the overall security policy and infrastructure. \n\n The security labels can be updated without changing the stated version of the resource. The list of security labels is a set. Uniqueness is based the system/code, and version and display are ignored. "
            )
        )
    )]
    #[serde(rename = "security")]
    pub security: Vec<Option<Coding>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_security")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub security_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[Tags](http://hl7.org/fhir/ValueSet/common-tags); Tags applied to this resource** \n\n Tags applied to this resource. Tags are intended to be used to identify and relate resources to process and workflow, and applications are not required to consider the tags when interpreting the meaning of a resource. \n\n The tags can be updated without changing the stated version of the resource. The list of tags is a set. Uniqueness is based the system/code, and version and display are ignored. "
            )
        )
    )]
    #[serde(rename = "tag")]
    pub tag: Vec<Option<Coding>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_tag")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub tag_ext: Vec<Option<FieldExtension>>,
}
impl From<MetaInner> for Meta {
    fn from(inner: MetaInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Meta {
    type Target = MetaInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Meta {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Meta {
    #[cfg(feature = "builders")]
    pub fn builder() -> MetaBuilder {
        MetaInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct MonetaryComponent(pub Box<MonetaryComponentInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = MonetaryComponentBuilder),
        build_method(into = MonetaryComponent),
        field_defaults(setter(into)),
    )
)]
pub struct MonetaryComponentInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "type")]
    pub r#type: codes::PriceComponentType,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[PriceComponentCode](); Codes may be used to differentiate between kinds of taxes, surcharges, discounts etc.** \n\n Codes may be used to differentiate between kinds of taxes, surcharges, discounts etc. \n\n "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Factor used for calculating this component** \n\n Factor used for calculating this component. \n\n "
            )
        )
    )]
    #[serde(rename = "factor")]
    pub factor: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_factor")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub factor_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Explicit value amount to be used** \n\n Explicit value amount to be used. \n\n "
            )
        )
    )]
    #[serde(rename = "amount")]
    pub amount: Option<Money>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_amount")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub amount_ext: Option<FieldExtension>,
}
impl From<MonetaryComponentInner> for MonetaryComponent {
    fn from(inner: MonetaryComponentInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for MonetaryComponent {
    type Target = MonetaryComponentInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for MonetaryComponent {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl MonetaryComponent {
    #[cfg(feature = "builders")]
    pub fn builder() -> MonetaryComponentBuilder {
        MonetaryComponentInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Money(pub Box<MoneyInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = MoneyBuilder),
        build_method(into = Money),
        field_defaults(setter(into)),
    )
)]
pub struct MoneyInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n Numerical value (with implicit precision). \n\n Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_value")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[CurrencyCode](http://hl7.org/fhir/ValueSet/currencies); ISO 4217 Currency Code** \n\n ISO 4217 Currency Code. \n\n "
            )
        )
    )]
    #[serde(rename = "currency")]
    pub currency: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_currency")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub currency_ext: Option<FieldExtension>,
}
impl From<MoneyInner> for Money {
    fn from(inner: MoneyInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Money {
    type Target = MoneyInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Money {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Money {
    #[cfg(feature = "builders")]
    pub fn builder() -> MoneyBuilder {
        MoneyInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Narrative(pub Box<NarrativeInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = NarrativeBuilder),
        build_method(into = Narrative),
        field_defaults(setter(into)),
    )
)]
pub struct NarrativeInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "status")]
    pub status: codes::NarrativeStatus,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_status")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub status_ext: Option<FieldExtension>,
    #[serde(rename = "div")]
    pub div: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_div")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub div_ext: Option<FieldExtension>,
}
impl From<NarrativeInner> for Narrative {
    fn from(inner: NarrativeInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Narrative {
    type Target = NarrativeInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Narrative {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Narrative {
    #[cfg(feature = "builders")]
    pub fn builder() -> NarrativeBuilder {
        NarrativeInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ParameterDefinition(pub Box<ParameterDefinitionInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ParameterDefinitionBuilder),
        build_method(into = ParameterDefinition),
        field_defaults(setter(into)),
    )
)]
pub struct ParameterDefinitionInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name used to access the parameter value** \n\n The name of the parameter used to allow access to the value of the parameter in evaluation contexts. \n\n "
            )
        )
    )]
    #[serde(rename = "name")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_name")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub name_ext: Option<FieldExtension>,
    #[serde(rename = "use")]
    pub r#use: codes::OperationParameterUse,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_use")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#use_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Minimum cardinality** \n\n The minimum number of times this parameter SHALL appear in the request or response. \n\n "
            )
        )
    )]
    #[serde(rename = "min")]
    pub min: Option<i32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_min")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub min_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Maximum cardinality (a number of *)** \n\n The maximum number of times this element is permitted to appear in the request or response. \n\n "
            )
        )
    )]
    #[serde(rename = "max")]
    pub max: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_max")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **A brief description of the parameter** \n\n A brief discussion of what the parameter is for and how it is used by the module. \n\n "
            )
        )
    )]
    #[serde(rename = "documentation")]
    pub documentation: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_documentation")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub documentation_ext: Option<FieldExtension>,
    #[serde(rename = "type")]
    pub r#type: codes::FHIRTypes,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What profile the value is expected to be** \n\n If specified, this indicates a profile that the input data must conform to, or that the output data will conform to. \n\n "
            )
        )
    )]
    #[serde(rename = "profile")]
    pub profile: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_profile")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub profile_ext: Option<FieldExtension>,
}
impl From<ParameterDefinitionInner> for ParameterDefinition {
    fn from(inner: ParameterDefinitionInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for ParameterDefinition {
    type Target = ParameterDefinitionInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for ParameterDefinition {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl ParameterDefinition {
    #[cfg(feature = "builders")]
    pub fn builder() -> ParameterDefinitionBuilder {
        ParameterDefinitionInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Period(pub Box<PeriodInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = PeriodBuilder),
        build_method(into = Period),
        field_defaults(setter(into)),
    )
)]
pub struct PeriodInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Starting time with inclusive boundary** \n\n The start of the period. The boundary is inclusive. \n\n If the low element is missing, the meaning is that the low boundary is not known. "
            )
        )
    )]
    #[serde(rename = "start")]
    pub start: Option<DateTime>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_start")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub start_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **End time with inclusive boundary, if not ongoing** \n\n The end of the period. If the end of the period is missing, it means no end was known or planned at the time the instance was created. The start may be in the past, and the end date in the future, which means that period is expected/planned to end at that time. \n\n The end value includes any matching date/time. i.e. 2012-02-03T10:00:00 is in a period that has an end value of 2012-02-03. "
            )
        )
    )]
    #[serde(rename = "end")]
    pub end: Option<DateTime>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_end")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub end_ext: Option<FieldExtension>,
}
impl From<PeriodInner> for Period {
    fn from(inner: PeriodInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Period {
    type Target = PeriodInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Period {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Period {
    #[cfg(feature = "builders")]
    pub fn builder() -> PeriodBuilder {
        PeriodInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct ProductShelfLife(pub Box<ProductShelfLifeInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ProductShelfLifeBuilder),
        build_method(into = ProductShelfLife),
        field_defaults(setter(into)),
    )
)]
pub struct ProductShelfLifeInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Extensions that cannot be ignored even if unrecognized** \n\n May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself). \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "modifierExtension")]
    pub modifier_extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **This describes the shelf life, taking into account various scenarios such as shelf life of the packaged Medicinal Product itself, shelf life after transformation where necessary and shelf life after the first opening of a bottle, etc. The shelf life type shall be specified using an appropriate controlled vocabulary The controlled term and the controlled term identifier shall be specified** \n\n This describes the shelf life, taking into account various scenarios such as shelf life of the packaged Medicinal Product itself, shelf life after transformation where necessary and shelf life after the first opening of a bottle, etc. The shelf life type shall be specified using an appropriate controlled vocabulary The controlled term and the controlled term identifier shall be specified. \n\n "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The shelf life time period can be specified using a numerical value for the period of time and its unit of time measurement The unit of measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol identifier shall be used** \n\n The shelf life time period can be specified using a numerical value for the period of time and its unit of time measurement The unit of measurement shall be specified in accordance with ISO 11240 and the resulting terminology The symbol and the symbol identifier shall be used. \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub period: Option<ProductShelfLifePeriod>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<ProductShelfLifePeriodExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Special precautions for storage, if any, can be specified using an appropriate controlled vocabulary The controlled term and the controlled term identifier shall be specified** \n\n Special precautions for storage, if any, can be specified using an appropriate controlled vocabulary The controlled term and the controlled term identifier shall be specified. \n\n "
            )
        )
    )]
    #[serde(rename = "specialPrecautionsForStorage")]
    pub special_precautions_for_storage: Vec<Option<CodeableConcept>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_specialPrecautionsForStorage")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub special_precautions_for_storage_ext: Vec<Option<FieldExtension>>,
}
impl From<ProductShelfLifeInner> for ProductShelfLife {
    fn from(inner: ProductShelfLifeInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for ProductShelfLife {
    type Target = ProductShelfLifeInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for ProductShelfLife {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl ProductShelfLife {
    #[cfg(feature = "builders")]
    pub fn builder() -> ProductShelfLifeBuilder {
        ProductShelfLifeInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ProductShelfLifePeriod {
    #[serde(rename = "periodDuration")]
    Duration(Duration),
    #[serde(rename = "periodString")]
    String(String),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum ProductShelfLifePeriodExtension {
    #[serde(rename = "_periodDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_periodString")]
    String(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Quantity(pub Box<QuantityInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = QuantityBuilder),
        build_method(into = Quantity),
        field_defaults(setter(into)),
    )
)]
pub struct QuantityInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_value")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<codes::QuantityComparator>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_comparator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub comparator_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_unit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub unit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_system")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub system_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
}
impl From<QuantityInner> for Quantity {
    fn from(inner: QuantityInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Quantity {
    type Target = QuantityInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Quantity {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Quantity {
    #[cfg(feature = "builders")]
    pub fn builder() -> QuantityBuilder {
        QuantityInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Range(pub Box<RangeInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = RangeBuilder),
        build_method(into = Range),
        field_defaults(setter(into)),
    )
)]
pub struct RangeInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Low limit** \n\n The low limit. The boundary is inclusive. \n\n If the low element is missing, the low boundary is not known. "
            )
        )
    )]
    #[serde(rename = "low")]
    pub low: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_low")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub low_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **High limit** \n\n The high limit. The boundary is inclusive. \n\n If the high element is missing, the high boundary is not known. "
            )
        )
    )]
    #[serde(rename = "high")]
    pub high: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_high")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub high_ext: Option<FieldExtension>,
}
impl From<RangeInner> for Range {
    fn from(inner: RangeInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Range {
    type Target = RangeInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Range {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Range {
    #[cfg(feature = "builders")]
    pub fn builder() -> RangeBuilder {
        RangeInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Ratio(pub Box<RatioInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = RatioBuilder),
        build_method(into = Ratio),
        field_defaults(setter(into)),
    )
)]
pub struct RatioInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(doc = " **Numerator value** \n\n The value of the numerator. \n\n ")
        )
    )]
    #[serde(rename = "numerator")]
    pub numerator: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_numerator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub numerator_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Denominator value** \n\n The value of the denominator. \n\n "
            )
        )
    )]
    #[serde(rename = "denominator")]
    pub denominator: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_denominator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub denominator_ext: Option<FieldExtension>,
}
impl From<RatioInner> for Ratio {
    fn from(inner: RatioInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Ratio {
    type Target = RatioInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Ratio {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Ratio {
    #[cfg(feature = "builders")]
    pub fn builder() -> RatioBuilder {
        RatioInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct RatioRange(pub Box<RatioRangeInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = RatioRangeBuilder),
        build_method(into = RatioRange),
        field_defaults(setter(into)),
    )
)]
pub struct RatioRangeInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Low Numerator limit** \n\n The value of the low limit numerator. \n\n If the low element is missing, the low boundary is not known. "
            )
        )
    )]
    #[serde(rename = "lowNumerator")]
    pub low_numerator: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_lowNumerator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub low_numerator_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **High Numerator limit** \n\n The value of the high limit numerator. \n\n If the high element is missing, the high boundary is not known. "
            )
        )
    )]
    #[serde(rename = "highNumerator")]
    pub high_numerator: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_highNumerator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub high_numerator_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Denominator value** \n\n The value of the denominator. \n\n "
            )
        )
    )]
    #[serde(rename = "denominator")]
    pub denominator: Option<Quantity>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_denominator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub denominator_ext: Option<FieldExtension>,
}
impl From<RatioRangeInner> for RatioRange {
    fn from(inner: RatioRangeInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for RatioRange {
    type Target = RatioRangeInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for RatioRange {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl RatioRange {
    #[cfg(feature = "builders")]
    pub fn builder() -> RatioRangeBuilder {
        RatioRangeInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Reference(pub Box<ReferenceInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = ReferenceBuilder),
        build_method(into = Reference),
        field_defaults(setter(into)),
    )
)]
pub struct ReferenceInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Literal reference, Relative, internal or absolute URL** \n\n A reference to a location at which the other resource is found. The reference may be a relative reference, in which case it is relative to the service base URL, or an absolute URL that resolves to the location where the resource is found. The reference may be version specific or not. If the reference is not to a FHIR RESTful server, then it should be assumed to be version specific. Internal fragment references (start with '#') refer to contained resources. \n\n Using absolute URLs provides a stable scalable approach suitable for a cloud/web context, while using relative/logical references provides a flexible approach suitable for use when trading across closed eco-system boundaries.   Absolute URLs do not need to point to a FHIR RESTful server, though this is the preferred approach. If the URL conforms to the structure \"[type]/[id]\" then it should be assumed that the reference is to a FHIR RESTful server. "
            )
        )
    )]
    #[serde(rename = "reference")]
    pub reference: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_reference")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub reference_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[FHIRResourceTypeExt](http://hl7.org/fhir/ValueSet/resource-types); Type the reference refers to (e.g. \"Patient\") - must be a resource in resources** \n\n The expected type of the target of the reference. If both Reference.type and Reference.reference are populated and Reference.reference is a FHIR URL, both SHALL be consistent.\n\nThe type is the Canonical URL of Resource Definition that is the type this reference refers to. References are URLs that are relative to http://hl7.org/fhir/StructureDefinition/ e.g. \"Patient\" is a reference to http://hl7.org/fhir/StructureDefinition/Patient. Absolute URLs are only allowed for logical models (and can only be used in references in logical models, not resources). \n\n This element is used to indicate the type of  the target of the reference. This may be used which ever of the other elements are populated (or not). In some cases, the type of the target may be determined by inspection of the reference (e.g. a known RESTful URL) or by resolving the target of the reference. "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Logical reference, when literal reference is not known** \n\n An identifier for the target resource. This is used when there is no way to reference the other resource directly, either because the entity it represents is not available through a FHIR server, or because there is no way for the author of the resource to convert a known identifier to an actual location. There is no requirement that a Reference.identifier point to something that is actually exposed as a FHIR instance, but it SHALL point to a business concept that would be expected to be exposed as a FHIR instance, and that instance would need to be of a FHIR resource type allowed by the reference. \n\n When an identifier is provided in place of a reference, any system processing the reference will only be able to resolve the identifier to a reference if it understands the business context in which the identifier is used. Sometimes this is global (e.g. a national identifier) but often it is not. For this reason, none of the useful mechanisms described for working with references (e.g. chaining, includes) are possible, nor should servers be expected to be able resolve the reference. Servers may accept an identifier based reference untouched, resolve it, and/or reject it - see CapabilityStatement.rest.resource.referencePolicy. \n\nWhen both an identifier and a literal reference are provided, the literal reference is preferred. Applications processing the resource are allowed - but not required - to check that the identifier matches the literal reference\n\nApplications converting a logical reference to a literal reference may choose to leave the logical reference present, or remove it.\n\nReference is intended to point to a structure that can potentially be expressed as a FHIR resource, though there is no need for it to exist as an actual FHIR resource instance - except in as much as an application wishes to actual find the target of the reference. The content referred to be the identifier must meet the logical constraints implied by any limitations on what resource types are permitted for the reference.  For example, it would not be legitimate to send the identifier for a drug prescription if the type were Reference(Observation|DiagnosticReport).  One of the use-cases for Reference.identifier is the situation where no FHIR representation exists (where the type is Reference (Any).\n\nThis element only allows for a single identifier. In the case where additional identifers are required, use the [http://hl7.org/fhir/StructureDefinition/additionalIdentifier](http://hl7.org/fhir/extensions/StructureDefinition-additionalIdentifier.html) extension. "
            )
        )
    )]
    #[serde(rename = "identifier")]
    pub identifier: Option<Identifier>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_identifier")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub identifier_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Text alternative for the resource** \n\n Plain text narrative that identifies the resource in addition to the resource reference. \n\n This is generally not the same as the Resource.text of the referenced resource.  The purpose is to identify what's being referenced, not to fully describe it. "
            )
        )
    )]
    #[serde(rename = "display")]
    pub display: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_display")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub display_ext: Option<FieldExtension>,
}
impl From<ReferenceInner> for Reference {
    fn from(inner: ReferenceInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Reference {
    type Target = ReferenceInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Reference {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Reference {
    #[cfg(feature = "builders")]
    pub fn builder() -> ReferenceBuilder {
        ReferenceInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct RelatedArtifact(pub Box<RelatedArtifactInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = RelatedArtifactBuilder),
        build_method(into = RelatedArtifact),
        field_defaults(setter(into)),
    )
)]
pub struct RelatedArtifactInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "type")]
    pub r#type: codes::RelatedArtifactType,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[RelatedArtifactClassifier](http://hl7.org/fhir/ValueSet/citation-artifact-classifier); Additional classifiers** \n\n Provides additional classifiers of the related artifact. \n\n "
            )
        )
    )]
    #[serde(rename = "classifier")]
    pub classifier: Vec<Option<CodeableConcept>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_classifier")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub classifier_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Short label** \n\n A short label that can be used to reference the citation from elsewhere in the containing artifact, such as a footnote index. \n\n "
            )
        )
    )]
    #[serde(rename = "label")]
    pub label: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_label")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub label_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Brief description of the related artifact** \n\n A brief description of the document or knowledge resource being referenced, suitable for display to a consumer. \n\n "
            )
        )
    )]
    #[serde(rename = "display")]
    pub display: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_display")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub display_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Bibliographic citation for the artifact** \n\n A bibliographic citation for the related artifact. This text SHOULD be formatted according to an accepted citation format. \n\n Additional structured information about citations should be captured as extensions. "
            )
        )
    )]
    #[serde(rename = "citation")]
    pub citation: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_citation")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub citation_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What document is being referenced** \n\n The document being referenced, represented as an attachment. This is exclusive with the resource element. \n\n "
            )
        )
    )]
    #[serde(rename = "document")]
    pub document: Option<Attachment>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_document")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub document_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What artifact is being referenced** \n\n The related artifact, such as a library, value set, profile, or other knowledge resource. \n\n If the type is predecessor, this is a reference to the succeeding knowledge resource. If the type is successor, this is a reference to the prior knowledge resource. "
            )
        )
    )]
    #[serde(rename = "resource")]
    pub resource: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_resource")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub resource_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What artifact, if not a conformance resource** \n\n The related artifact, if the artifact is not a canonical resource, or a resource reference to a canonical resource. \n\n If both resource and resourceReference are present, they SHOULD be consistent and reference the same resource. Although relatedArtifact is intended to support references to definitional resources, there are cases where non-definitional resources can be definitional (such as Location where the kind is mode). Related artifacts SHOULD be used to reference definitional resources, and profiles SHOULD be used to make that explicit for particular use cases. "
            )
        )
    )]
    #[serde(rename = "resourceReference")]
    pub resource_reference: Option<Reference>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_resourceReference")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub resource_reference_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[RelatedArtifactPublicationStatus](http://hl7.org/fhir/ValueSet/publication-status); draft | active | retired | unknown** \n\n The publication status of the artifact being referred to. \n\n "
            )
        )
    )]
    #[serde(rename = "publicationStatus")]
    pub publication_status: Option<codes::PublicationStatus>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_publicationStatus")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub publication_status_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Date of publication of the artifact being referred to** \n\n The date of publication of the artifact being referred to. \n\n "
            )
        )
    )]
    #[serde(rename = "publicationDate")]
    pub publication_date: Option<Date>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_publicationDate")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub publication_date_ext: Option<FieldExtension>,
}
impl From<RelatedArtifactInner> for RelatedArtifact {
    fn from(inner: RelatedArtifactInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for RelatedArtifact {
    type Target = RelatedArtifactInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for RelatedArtifact {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl RelatedArtifact {
    #[cfg(feature = "builders")]
    pub fn builder() -> RelatedArtifactBuilder {
        RelatedArtifactInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct SampledData(pub Box<SampledDataInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = SampledDataBuilder),
        build_method(into = SampledData),
        field_defaults(setter(into)),
    )
)]
pub struct SampledDataInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "origin")]
    pub origin: Quantity,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_origin")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub origin_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Number of intervalUnits between samples** \n\n Amount of intervalUnits between samples, e.g. milliseconds for time-based sampling. \n\n This is usually a whole number. "
            )
        )
    )]
    #[serde(rename = "interval")]
    pub interval: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_interval")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub interval_ext: Option<FieldExtension>,
    #[serde(rename = "intervalUnit")]
    pub interval_unit: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_intervalUnit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub interval_unit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Multiply data by this before adding to origin** \n\n A correction factor that is applied to the sampled data points before they are added to the origin. \n\n "
            )
        )
    )]
    #[serde(rename = "factor")]
    pub factor: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_factor")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub factor_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Lower limit of detection** \n\n The lower limit of detection of the measured points. This is needed if any of the data points have the value \"L\" (lower than detection limit). \n\n "
            )
        )
    )]
    #[serde(rename = "lowerLimit")]
    pub lower_limit: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_lowerLimit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub lower_limit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Upper limit of detection** \n\n The upper limit of detection of the measured points. This is needed if any of the data points have the value \"U\" (higher than detection limit). \n\n "
            )
        )
    )]
    #[serde(rename = "upperLimit")]
    pub upper_limit: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_upperLimit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub upper_limit_ext: Option<FieldExtension>,
    #[serde(rename = "dimensions")]
    pub dimensions: NonZeroU32,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_dimensions")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub dimensions_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Defines the codes used in the data** \n\n Reference to ConceptMap that defines the codes used in the data. \n\n The ConceptMap cannot define meanings for the codes 'E', 'U', or 'L' (nor 'e', 'u', or 'l'). "
            )
        )
    )]
    #[serde(rename = "codeMap")]
    pub code_map: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_codeMap")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_map_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Offsets, typically in time, at which data values were taken** \n\n A series of data points which are decimal values separated by a single space (character u20).  The units in which the offsets are expressed are found in intervalUnit.  The absolute point at which the measurements begin SHALL be conveyed outside the scope of this datatype, e.g. Observation.effectiveDateTime for a timing offset. \n\n If offsets is present, the number of data points must be equal to the number of offsets mlutipled by the dimensions. "
            )
        )
    )]
    #[serde(rename = "offsets")]
    pub offsets: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_offsets")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub offsets_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Decimal values with spaces, or \"E\" | \"U\" | \"L\", or another code** \n\n A series of data points which are decimal values or codes separated by a single space (character u20). The special codes \"E\" (error), \"L\" (below detection limit) and \"U\" (above detection limit) are also defined for used in place of decimal values. \n\n The data may be missing if it is omitted for summarization purposes. In general, data is required for any actual use of a SampledData. "
            )
        )
    )]
    #[serde(rename = "data")]
    pub data: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_data")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub data_ext: Option<FieldExtension>,
}
impl From<SampledDataInner> for SampledData {
    fn from(inner: SampledDataInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for SampledData {
    type Target = SampledDataInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for SampledData {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl SampledData {
    #[cfg(feature = "builders")]
    pub fn builder() -> SampledDataBuilder {
        SampledDataInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Signature(pub Box<SignatureInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = SignatureBuilder),
        build_method(into = Signature),
        field_defaults(setter(into)),
    )
)]
pub struct SignatureInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[SignatureType](http://hl7.org/fhir/ValueSet/signature-type); Indication of the reason the entity signed the object(s)** \n\n An indication of the reason that the entity signed this document. This may be explicitly included as part of the signature information and can be used when determining accountability for various actions concerning the document. \n\n Examples include attesting to: authorship, correct transcription, and witness of specific event. Also known as a "Commitment Type Indication". "
            )
        )
    )]
    #[serde(rename = "type")]
    pub r#type: Vec<Option<Coding>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **When the signature was created** \n\n When the digital signature was signed. \n\n This should agree with the information in the signature. "
            )
        )
    )]
    #[serde(rename = "when")]
    pub when: Option<Instant>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_when")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub when_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Who signed** \n\n A reference to an application-usable description of the identity that signed  (e.g. the signature used their private key). \n\n This should agree with the information in the signature. "
            )
        )
    )]
    #[serde(rename = "who")]
    pub who: Option<Reference>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_who")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub who_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The party represented** \n\n A reference to an application-usable description of the identity that is represented by the signature. \n\n The party that can't sign. For example a child. "
            )
        )
    )]
    #[serde(rename = "onBehalfOf")]
    pub on_behalf_of: Option<Reference>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_onBehalfOf")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub on_behalf_of_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MimeType](http://hl7.org/fhir/ValueSet/mimetypes); The technical format of the signed resources** \n\n A mime type that indicates the technical format of the target resources signed by the signature. \n\n \"xml\", \"json\" and \"ttl\" are allowed, which describe the simple encodings described in the specification (and imply appropriate bundle support). Otherwise, mime types are legal here. "
            )
        )
    )]
    #[serde(rename = "targetFormat")]
    pub target_format: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_targetFormat")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub target_format_ext: Option<FieldExtension>,
    #[doc = " **[MimeType](http://hl7.org/fhir/ValueSet/mimetypes); The technical format of the signature** \n\n A mime type that indicates the technical format of the signature. Important mime types are application/signature+xml for X ML DigSig, application/jose for JWS, and image/* for a graphical image of a signature, etc. \n\n "]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[MimeType](http://hl7.org/fhir/ValueSet/mimetypes); The technical format of the signature** \n\n A mime type that indicates the technical format of the signature. Important mime types are application/signature+xml for X ML DigSig, application/jose for JWS, and image/* for a graphical image of a signature, etc. \n\n "
            )
        )
    )]
    #[serde(rename = "sigFormat")]
    pub sig_format: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_sigFormat")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub sig_format_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The actual signature content (XML DigSig. JWS, picture, etc.)** \n\n The base64 encoding of the Signature content. When signature is not recorded electronically this element would be empty. \n\n Where the signature type is an XML DigSig, the signed content is a FHIR Resource(s), the signature is of the XML form of the Resource(s) using  XML-Signature (XMLDIG) \"Detached Signature\" form. "
            )
        )
    )]
    #[serde(rename = "data")]
    pub data: Option<Base64Binary>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_data")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub data_ext: Option<FieldExtension>,
}
impl From<SignatureInner> for Signature {
    fn from(inner: SignatureInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Signature {
    type Target = SignatureInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Signature {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Signature {
    #[cfg(feature = "builders")]
    pub fn builder() -> SignatureBuilder {
        SignatureInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct Timing(pub Box<TimingInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = TimingBuilder),
        build_method(into = Timing),
        field_defaults(setter(into)),
    )
)]
pub struct TimingInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Extensions that cannot be ignored even if unrecognized** \n\n May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself). \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "modifierExtension")]
    pub modifier_extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **When the event occurs** \n\n Identifies specific times when the event occurs. \n\n "
            )
        )
    )]
    #[serde(rename = "event")]
    pub event: Vec<Option<DateTime>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_event")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub event_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **When the event is to occur** \n\n A set of rules that describe when the event is scheduled. \n\n "
            )
        )
    )]
    #[serde(rename = "repeat")]
    pub repeat: Option<TimingRepeat>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_repeat")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub repeat_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[TimingAbbreviation](http://hl7.org/fhir/ValueSet/timing-abbreviation); C | BID | TID | QID | AM | PM | QD | QOD | +** \n\n A code for the timing schedule (or just text in code.text). Some codes such as BID are ubiquitous, but many institutions define their own additional codes. If a code is provided, the code is understood to be a complete statement of whatever is specified in the structured timing data, and either the code or the data may be used to interpret the Timing, with the exception that .repeat.bounds still applies over the code (and is not contained in the code). \n\n BID etc. are defined as 'at institutionally specified times'. For example, an institution may choose that BID is \"always at 7am and 6pm\".  If it is inappropriate for this choice to be made, the code BID should not be used. Instead, a distinct organization-specific code should be used in place of the HL7-defined BID code and/or a structured representation should be used (in this case, specifying the two event times). "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
}
impl From<TimingInner> for Timing {
    fn from(inner: TimingInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for Timing {
    type Target = TimingInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for Timing {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl Timing {
    #[cfg(feature = "builders")]
    pub fn builder() -> TimingBuilder {
        TimingInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct TimingRepeat {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Length/Range of lengths, or (Start and/or end) limits** \n\n Either a duration for the length of the timing schedule, a range of possible length, or outer bounds for start and/or end limits of the timing schedule. \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub bounds: Option<TimingRepeatBounds>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub bounds_ext: Option<TimingRepeatBoundsExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Number of times to repeat** \n\n A total count of the desired number of repetitions across the duration of the entire timing specification. If countMax is present, this element indicates the lower bound of the allowed range of count values. \n\n If you have both bounds and count, then this should be understood as within the bounds period, until count times happens. "
            )
        )
    )]
    #[serde(rename = "count")]
    pub count: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_count")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub count_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Maximum number of times to repeat** \n\n If present, indicates that the count is a range - so to perform the action between [count] and [countMax] times. \n\n "
            )
        )
    )]
    #[serde(rename = "countMax")]
    pub count_max: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_countMax")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub count_max_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **How long when it happens** \n\n How long this thing happens for when it happens. If durationMax is present, this element indicates the lower bound of the allowed range of the duration. \n\n For some events the duration is part of the definition of the event (e.g. IV infusions, where the duration is implicit in the specified quantity and rate). For others, it's part of the timing specification (e.g. exercise). "
            )
        )
    )]
    #[serde(rename = "duration")]
    pub duration: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_duration")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub duration_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **How long when it happens (Max)** \n\n If present, indicates that the duration is a range - so to perform the action between [duration] and [durationMax] time length. \n\n For some events the duration is part of the definition of the event (e.g. IV infusions, where the duration is implicit in the specified quantity and rate). For others, it's part of the timing specification (e.g. exercise). "
            )
        )
    )]
    #[serde(rename = "durationMax")]
    pub duration_max: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_durationMax")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub duration_max_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[UnitsOfTime](http://hl7.org/fhir/ValueSet/units-of-time); s | min | h | d | wk | mo | a - unit of time (UCUM)** \n\n The units of time for the duration, in UCUM units\nNormal practice is to use the 'mo' code as a calendar month when calculating the next occurrence. \n\n "
            )
        )
    )]
    #[serde(rename = "durationUnit")]
    pub duration_unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_durationUnit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub duration_unit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Indicates the number of repetitions that should occur within a period. I.e. Event occurs frequency times per period** \n\n The number of times to repeat the action within the specified period. If frequencyMax is present, this element indicates the lower bound of the allowed range of the frequency. \n\n "
            )
        )
    )]
    #[serde(rename = "frequency")]
    pub frequency: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_frequency")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub frequency_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Event occurs up to frequencyMax times per period** \n\n If present, indicates that the frequency is a range - so to repeat between [frequency] and [frequencyMax] times within the period or period range. \n\n "
            )
        )
    )]
    #[serde(rename = "frequencyMax")]
    pub frequency_max: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_frequencyMax")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub frequency_max_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **The duration to which the frequency applies. I.e. Event occurs frequency times per period** \n\n Indicates the duration of time over which repetitions are to occur; e.g. to express \"3 times per day\", 3 would be the frequency and \"1 day\" would be the period. If periodMax is present, this element indicates the lower bound of the allowed range of the period length. \n\n "
            )
        )
    )]
    #[serde(rename = "period")]
    pub period: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_period")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Upper limit of period (3-4 hours)** \n\n If present, indicates that the period is a range from [period] to [periodMax], allowing expressing concepts such as \"do this once every 3-5 days. \n\n "
            )
        )
    )]
    #[serde(rename = "periodMax")]
    pub period_max: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_periodMax")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_max_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[UnitsOfTime](http://hl7.org/fhir/ValueSet/units-of-time); s | min | h | d | wk | mo | a - unit of time (UCUM)** \n\n The units of time for the period in UCUM units\nNormal practice is to use the 'mo' code as a calendar month when calculating the next occurrence. \n\n "
            )
        )
    )]
    #[serde(rename = "periodUnit")]
    pub period_unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_periodUnit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub period_unit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[DayOfWeek](http://hl7.org/fhir/ValueSet/days-of-week); mon | tue | wed | thu | fri | sat | sun** \n\n If one or more days of week is provided, then the action happens only on the specified day(s). \n\n If no days are specified, the action is assumed to happen every day as otherwise specified. "
            )
        )
    )]
    #[serde(rename = "dayOfWeek")]
    pub day_of_week: Vec<Option<codes::DaysOfWeek>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_dayOfWeek")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub day_of_week_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Time of day for action** \n\n Specified time of day for action to take place. \n\n When time of day is specified, it is inferred that the action happens every day (as filtered by dayofWeek) on the specified times. If there's a timeOfDay, there cannot be a when, or vice versa. "
            )
        )
    )]
    #[serde(rename = "timeOfDay")]
    pub time_of_day: Vec<Option<Time>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_timeOfDay")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub time_of_day_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[EventTiming](http://hl7.org/fhir/ValueSet/event-timing); Code for time period of occurrence** \n\n An approximate time period during the day, potentially linked to an event of daily living that indicates when the action should occur. \n\n When more than one event is listed, the event is tied to the union of the specified events. "
            )
        )
    )]
    #[serde(rename = "when")]
    pub when: Vec<Option<codes::EventTiming>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_when")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub when_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Minutes from event (before or after)** \n\n The number of minutes from the event. If the event code does not indicate whether the minutes is before or after the event, then the offset is assumed to be after the event. \n\n "
            )
        )
    )]
    #[serde(rename = "offset")]
    pub offset: Option<u32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_offset")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub offset_ext: Option<FieldExtension>,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum TimingRepeatBounds {
    #[serde(rename = "boundsDuration")]
    Duration(Duration),
    #[serde(rename = "boundsRange")]
    Range(Range),
    #[serde(rename = "boundsPeriod")]
    Period(Period),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum TimingRepeatBoundsExtension {
    #[serde(rename = "_boundsDuration")]
    Duration(FieldExtension),
    #[serde(rename = "_boundsRange")]
    Range(FieldExtension),
    #[serde(rename = "_boundsPeriod")]
    Period(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct TriggerDefinition(pub Box<TriggerDefinitionInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = TriggerDefinitionBuilder),
        build_method(into = TriggerDefinition),
        field_defaults(setter(into)),
    )
)]
pub struct TriggerDefinitionInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "type")]
    pub r#type: codes::TriggerType,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_type")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub r#type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Name or URI that identifies the event** \n\n A formal name for the event. This may be an absolute URI that identifies the event formally (e.g. from a trigger registry), or a simple relative URI that identifies the event in a local context. \n\n An event name can be provided for all event types, but is required for named events. If a name is provided for a type other than named events, it is considered to be a shorthand for the semantics described by the formal description of the event. "
            )
        )
    )]
    #[serde(rename = "name")]
    pub name: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_name")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub name_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded definition of the event** \n\n A code that identifies the event. \n\n "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<CodeableConcept>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **What event** \n\n A reference to a SubscriptionTopic resource that defines the event. If this element is provided, no other information about the trigger definition may be supplied. \n\n "
            )
        )
    )]
    #[serde(rename = "subscriptionTopic")]
    pub subscription_topic: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_subscriptionTopic")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub subscription_topic_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Timing of the event** \n\n The timing of the event (if this is a periodic trigger). \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub timing: Option<TriggerDefinitionTiming>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub timing_ext: Option<TriggerDefinitionTimingExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Triggering data of the event (multiple = 'and')** \n\n The triggering data of the event (if this is a data trigger). If more than one data is requirement is specified, then all the data requirements must be true. \n\n This element shall be present for any data type trigger. "
            )
        )
    )]
    #[serde(rename = "data")]
    pub data: Vec<Option<DataRequirement>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_data")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub data_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Whether the event triggers (boolean expression)** \n\n A boolean-valued expression that is evaluated in the context of the container of the trigger definition and returns whether or not the trigger fires. \n\n This element can be only be specified for data type triggers and provides additional semantics for the trigger. The context available within the condition is based on the type of data event. For all events, the current resource will be available as context. In addition, for modification events, the previous resource will also be available. The expression may be inlined, or may be a simple absolute URI, which is a reference to a named expression within a logic library referenced by a library element or extension within the containing resource. If the expression is a FHIR Path expression, it evaluates in the context of a resource of one of the type identified in the data requirement, and may also refer to the variable %previous for delta comparisons on events of type data-changed, data-modified, and data-deleted which will always have the same type. "
            )
        )
    )]
    #[serde(rename = "condition")]
    pub condition: Option<Expression>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_condition")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub condition_ext: Option<FieldExtension>,
}
impl From<TriggerDefinitionInner> for TriggerDefinition {
    fn from(inner: TriggerDefinitionInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for TriggerDefinition {
    type Target = TriggerDefinitionInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for TriggerDefinition {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl TriggerDefinition {
    #[cfg(feature = "builders")]
    pub fn builder() -> TriggerDefinitionBuilder {
        TriggerDefinitionInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum TriggerDefinitionTiming {
    #[serde(rename = "timingTiming")]
    Timing(Timing),
    #[serde(rename = "timingReference")]
    Reference(Reference),
    #[serde(rename = "timingDate")]
    Date(Date),
    #[serde(rename = "timingDateTime")]
    DateTime(DateTime),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum TriggerDefinitionTimingExtension {
    #[serde(rename = "_timingTiming")]
    Timing(FieldExtension),
    #[serde(rename = "_timingReference")]
    Reference(FieldExtension),
    #[serde(rename = "_timingDate")]
    Date(FieldExtension),
    #[serde(rename = "_timingDateTime")]
    DateTime(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct UsageContext(pub Box<UsageContextInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = UsageContextBuilder),
        build_method(into = UsageContext),
        field_defaults(setter(into)),
    )
)]
pub struct UsageContextInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(rename = "code")]
    pub code: Coding,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
    #[serde(flatten)]
    pub value: UsageContextValue,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<UsageContextValueExtension>,
}
impl From<UsageContextInner> for UsageContext {
    fn from(inner: UsageContextInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for UsageContext {
    type Target = UsageContextInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for UsageContext {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl UsageContext {
    #[cfg(feature = "builders")]
    pub fn builder() -> UsageContextBuilder {
        UsageContextInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum UsageContextValue {
    #[serde(rename = "valueCodeableConcept")]
    CodeableConcept(CodeableConcept),
    #[serde(rename = "valueQuantity")]
    Quantity(Quantity),
    #[serde(rename = "valueRange")]
    Range(Range),
    #[serde(rename = "valueReference")]
    Reference(Reference),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum UsageContextValueExtension {
    #[serde(rename = "_valueCodeableConcept")]
    CodeableConcept(FieldExtension),
    #[serde(rename = "_valueQuantity")]
    Quantity(FieldExtension),
    #[serde(rename = "_valueRange")]
    Range(FieldExtension),
    #[serde(rename = "_valueReference")]
    Reference(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct VirtualServiceDetail(pub Box<VirtualServiceDetailInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = VirtualServiceDetailBuilder),
        build_method(into = VirtualServiceDetail),
        field_defaults(setter(into)),
    )
)]
pub struct VirtualServiceDetailInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[VirtualServiceType](http://hl7.org/fhir/ValueSet/virtual-service-type); Channel Type** \n\n The type of virtual service to connect to (i.e. Teams, Zoom, Specific VMR technology, WhatsApp). \n\n As this type defines what the virtual service is, it then defines what address and additional information might be relevant.\n\nSome profiles could be used for specific types to define what the other values could/should be. "
            )
        )
    )]
    #[serde(rename = "channelType")]
    pub channel_type: Option<Coding>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_channelType")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub channel_type_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Contact address/number** \n\n What address or number needs to be used for a user to connect to the virtual service to join. The channelType informs as to which datatype is appropriate to use (requires knowledge of the specific type). \n\n "
            )
        )
    )]
    #[serde(flatten)]
    pub address: Option<VirtualServiceDetailAddress>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(flatten)]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub address_ext: Option<VirtualServiceDetailAddressExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Address to see alternative connection details** \n\n Address to see alternative connection details. \n\n This web address can be used to provide additional details on the call, such as alternative/regional call in numbers, or other associated services. "
            )
        )
    )]
    #[serde(rename = "additionalInfo")]
    pub additional_info: Vec<Option<String>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_additionalInfo")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub additional_info_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Maximum number of participants supported by the virtual service** \n\n Maximum number of participants supported by the virtual service. \n\n Some services have only a limitted number of participants permitted to connect at a time, this is typically used in \"shared\" virtual services that you might find on location resources.\n\nTypically on-demand services might not have these restrictions. "
            )
        )
    )]
    #[serde(rename = "maxParticipants")]
    pub max_participants: Option<NonZeroU32>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_maxParticipants")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub max_participants_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Session Key required by the virtual service** \n\n Session Key required by the virtual service. \n\n Some services require a session key to be able to access the service once connected.\n\nThis could be in cases where a shared number is used, and a session key is added to put into a private line, or to identify the participant in a call. "
            )
        )
    )]
    #[serde(rename = "sessionKey")]
    pub session_key: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_sessionKey")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub session_key_ext: Option<FieldExtension>,
}
impl From<VirtualServiceDetailInner> for VirtualServiceDetail {
    fn from(inner: VirtualServiceDetailInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for VirtualServiceDetail {
    type Target = VirtualServiceDetailInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for VirtualServiceDetail {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl VirtualServiceDetail {
    #[cfg(feature = "builders")]
    pub fn builder() -> VirtualServiceDetailBuilder {
        VirtualServiceDetailInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum VirtualServiceDetailAddress {
    #[serde(rename = "addressUrl")]
    Url(String),
    #[serde(rename = "addressString")]
    String(String),
    #[serde(rename = "addressContactPoint")]
    ContactPoint(ContactPoint),
    #[serde(rename = "addressExtendedContactDetail")]
    ExtendedContactDetail(ExtendedContactDetail),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum VirtualServiceDetailAddressExtension {
    #[serde(rename = "_addressUrl")]
    Url(FieldExtension),
    #[serde(rename = "_addressString")]
    String(FieldExtension),
    #[serde(rename = "_addressContactPoint")]
    ContactPoint(FieldExtension),
    #[serde(rename = "_addressExtendedContactDetail")]
    ExtendedContactDetail(FieldExtension),
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct MoneyQuantity(pub Box<MoneyQuantityInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = MoneyQuantityBuilder),
        build_method(into = MoneyQuantity),
        field_defaults(setter(into)),
    )
)]
pub struct MoneyQuantityInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_value")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n How the value should be understood and represented - whether the actual value is greater or less than the stated value due to measurement issues; e.g. if the comparator is \"<\" , then the real value is < stated value. \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Option<codes::QuantityComparator>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_comparator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub comparator_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_unit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub unit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_system")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub system_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
}
impl From<MoneyQuantityInner> for MoneyQuantity {
    fn from(inner: MoneyQuantityInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for MoneyQuantity {
    type Target = MoneyQuantityInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for MoneyQuantity {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl MoneyQuantity {
    #[cfg(feature = "builders")]
    pub fn builder() -> MoneyQuantityBuilder {
        MoneyQuantityInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(transparent)]
pub struct SimpleQuantity(pub Box<SimpleQuantityInner>);
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(
    feature = "builders",
    builder(
        builder_method(vis = ""),
        builder_type(name = SimpleQuantityBuilder),
        build_method(into = SimpleQuantity),
        field_defaults(setter(into)),
    )
)]
pub struct SimpleQuantityInner {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unique id for inter-element referencing** \n\n Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces. \n\n "
            )
        )
    )]
    #[serde(rename = "id")]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Additional content defined by implementations** \n\n May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. \n\n There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions.  The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone. "
            )
        )
    )]
    #[serde(rename = "extension")]
    pub extension: Vec<Extension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Numerical value (with implicit precision)** \n\n The value of the measured amount. The value includes an implicit precision in the presentation of the value. \n\n The implicit precision in the value should always be honored. Monetary values have their own rules for handling precision (refer to standard accounting text books). "
            )
        )
    )]
    #[serde(rename = "value")]
    pub value: Option<f64>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_value")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub value_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **[QuantityComparator](http://hl7.org/fhir/ValueSet/quantity-comparator); < | <= | >= | > | ad - how to understand the value** \n\n Not allowed to be used in this context \n\n "
            )
        )
    )]
    #[serde(rename = "comparator")]
    pub comparator: Vec<Option<codes::QuantityComparator>>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[serde(rename = "_comparator")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub comparator_ext: Vec<Option<FieldExtension>>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Unit representation** \n\n A human-readable form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "unit")]
    pub unit: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_unit")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub unit_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **System that defines coded unit form** \n\n The identification of the system that provides the coded form of the unit. \n\n "
            )
        )
    )]
    #[serde(rename = "system")]
    pub system: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_system")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub system_ext: Option<FieldExtension>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(
        feature = "builders",
        builder(
            default,
            setter(
                doc = " **Coded form of the unit** \n\n A computer processable form of the unit in some unit representation system. \n\n The preferred system is UCUM, but SNOMED CT can also be used (for customary units) or ISO 4217 for currency.  The context of use may additionally require a code from a particular system. "
            )
        )
    )]
    #[serde(rename = "code")]
    pub code: Option<String>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[serde(rename = "_code")]
    #[cfg_attr(feature = "builders", builder(default, setter(doc = "Field extension.")))]
    pub code_ext: Option<FieldExtension>,
}
impl From<SimpleQuantityInner> for SimpleQuantity {
    fn from(inner: SimpleQuantityInner) -> Self {
        Self(Box::new(inner))
    }
}
impl ::core::ops::Deref for SimpleQuantity {
    type Target = SimpleQuantityInner;
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl ::core::ops::DerefMut for SimpleQuantity {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl SimpleQuantity {
    #[cfg(feature = "builders")]
    pub fn builder() -> SimpleQuantityBuilder {
        SimpleQuantityInner::builder()
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "builders", derive(TypedBuilder))]
#[serde(rename_all = "camelCase")]
#[cfg_attr(feature = "builders", builder(field_defaults(setter(into))))]
pub struct FieldExtension {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    #[cfg_attr(feature = "builders", builder(default))]
    pub id: Option<String>,
    #[serde(default, skip_serializing_if = "Vec::is_empty")]
    #[cfg_attr(feature = "builders", builder(default))]
    pub extension: Vec<Extension>,
}