001package org.hl7.fhir.convertors.conv40_50.datatypes40_50.general40_50;
002
003import org.hl7.fhir.convertors.context.ConversionContext40_50;
004import org.hl7.fhir.convertors.conv40_50.datatypes40_50.primitive40_50.Code40_50;
005import org.hl7.fhir.convertors.conv40_50.datatypes40_50.primitive40_50.Decimal40_50;
006import org.hl7.fhir.exceptions.FHIRException;
007
008public class Money40_50 {
009  public static org.hl7.fhir.r5.model.Money convertMoney(org.hl7.fhir.r4.model.Money src) throws FHIRException {
010    if (src == null) return null;
011    org.hl7.fhir.r5.model.Money tgt = new org.hl7.fhir.r5.model.Money();
012    ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt);
013    if (src.hasValue()) tgt.setValueElement(Decimal40_50.convertDecimal(src.getValueElement()));
014    if (src.hasCurrency()) tgt.setCurrencyElement(Code40_50.convertCode(src.getCurrencyElement()));
015    return tgt;
016  }
017
018  public static org.hl7.fhir.r4.model.Money convertMoney(org.hl7.fhir.r5.model.Money src) throws FHIRException {
019    if (src == null) return null;
020    org.hl7.fhir.r4.model.Money tgt = new org.hl7.fhir.r4.model.Money();
021    ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt);
022    if (src.hasValue()) tgt.setValueElement(Decimal40_50.convertDecimal(src.getValueElement()));
023    if (src.hasCurrency()) tgt.setCurrencyElement(Code40_50.convertCode(src.getCurrencyElement()));
024    return tgt;
025  }
026}