getInterestAndExchangeRatesResponse

The getInterestAndExchangeRates() call returns a getInterestAndExchangeRatesResponse object that wraps an array of Result objects:

Example data

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
	<soap:Body>
		<ns2:getInterestAndExchangeRatesResponse xmlns:ns2="http://swea.riksbank.se/xsd">
			<return>
				<datefrom>2011-01-01</datefrom>
				<dateto>2012-02-09</dateto>
				<groups>
					<groupid>5</groupid>
					<groupname>STIBOR Fixing</groupname>
					<series>
						<seriesid>SEDPT/NSTIBOR</seriesid>
						<seriesname>STIBOR T/N</seriesname>
						<unit xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
						<resultrows>
							<date>2011-01-03</date>
							<period>2011 Vecka 1</period>
							<min xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
							<average xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
							<max xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
							<ultimo xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
							<value xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
						</resultrows>
						...
					</series>
				</groups>
			</return>
		</ns2:getInterestAndExchangeRatesResponse>
	</soap:Body>       
</soap:Envelope>