001package org.hl7.fhir.convertors.conv30_40.datatypes30_40.complextypes30_40;
002
003import org.hl7.fhir.convertors.context.ConversionContext30_40;
004import org.hl7.fhir.convertors.conv30_40.datatypes30_40.primitivetypes30_40.Code30_40;
005import org.hl7.fhir.convertors.conv30_40.datatypes30_40.primitivetypes30_40.Decimal30_40;
006import org.hl7.fhir.exceptions.FHIRException;
007
008public class Money30_40 {
009  public static org.hl7.fhir.r4.model.Money convertMoney(org.hl7.fhir.dstu3.model.Money src) throws FHIRException {
010    if (src == null) return null;
011    org.hl7.fhir.r4.model.Money tgt = new org.hl7.fhir.r4.model.Money();
012    ConversionContext30_40.INSTANCE.getVersionConvertor_30_40().copyElement(src, tgt);
013    if (src.hasValue()) tgt.setValueElement(Decimal30_40.convertDecimal(src.getValueElement()));
014    if (src.hasCode()) tgt.setCurrencyElement(Code30_40.convertCode(src.getCodeElement()));
015    return tgt;
016  }
017
018  public static org.hl7.fhir.dstu3.model.Money convertMoney(org.hl7.fhir.r4.model.Money src) throws FHIRException {
019    if (src == null) return null;
020    org.hl7.fhir.dstu3.model.Money tgt = new org.hl7.fhir.dstu3.model.Money();
021    ConversionContext30_40.INSTANCE.getVersionConvertor_30_40().copyElement(src, tgt);
022    if (src.hasValue()) tgt.setValueElement(Decimal30_40.convertDecimal(src.getValueElement()));
023    if (src.hasCurrency()) tgt.setCodeElement(Code30_40.convertCode(src.getCurrencyElement()));
024    return tgt;
025  }
026}