package eu.eudat.logic.proxy.fetching.entities; import jakarta.xml.bind.annotation.XmlElement; import jakarta.xml.bind.annotation.XmlElementWrapper; import jakarta.xml.bind.annotation.XmlRootElement; import java.util.List; @XmlRootElement(name = "ISO_4217") public class CurrencyModel { private List currencies; @XmlElementWrapper(name = "CcyTbl") @XmlElement(name = "CcyNtry") public List getCurrencies() { return currencies; } public void setCurrencies(List currencies) { this.currencies = currencies; } }