001package org.hl7.fhir.convertors.conv10_40.datatypes10_40.complextypes10_40;
002
003import org.hl7.fhir.convertors.context.ConversionContext10_40;
004import org.hl7.fhir.convertors.conv10_40.datatypes10_40.primitivetypes10_40.Code10_40;
005import org.hl7.fhir.convertors.conv10_40.datatypes10_40.primitivetypes10_40.Decimal10_40;
006import org.hl7.fhir.exceptions.FHIRException;
007
008public class Money10_40 {
009  public static org.hl7.fhir.r4.model.Money convertMoney(org.hl7.fhir.dstu2.model.Money src) throws FHIRException {
010    if (src == null || src.isEmpty()) return null;
011    org.hl7.fhir.r4.model.Money tgt = new org.hl7.fhir.r4.model.Money();
012    ConversionContext10_40.INSTANCE.getVersionConvertor_10_40().copyElement(src, tgt);
013    if (src.hasValueElement()) tgt.setValueElement(Decimal10_40.convertDecimal(src.getValueElement()));
014    if (src.hasCodeElement()) tgt.setCurrencyElement(Code10_40.convertCode(src.getCodeElement()));
015    return tgt;
016  }
017
018  public static org.hl7.fhir.dstu2.model.Money convertMoney(org.hl7.fhir.r4.model.Money src) throws FHIRException {
019    if (src == null || src.isEmpty()) return null;
020    org.hl7.fhir.dstu2.model.Money tgt = new org.hl7.fhir.dstu2.model.Money();
021    ConversionContext10_40.INSTANCE.getVersionConvertor_10_40().copyElement(src, tgt);
022    if (src.hasValueElement()) tgt.setValueElement(Decimal10_40.convertDecimal(src.getValueElement()));
023    if (src.hasCurrencyElement()) tgt.setCodeElement(Code10_40.convertCode(src.getCurrencyElement()));
024    return tgt;
025  }
026}